From 1be3f9e2e07c27f168aae024ddd7eb75a0ea5c4a Mon Sep 17 00:00:00 2001 From: Berkus Decker Date: Sat, 29 Jul 2023 00:17:48 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20Disable=20outdated=20test?= =?UTF-8?q?=20installers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a1b57b6..7f7831b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -79,13 +79,6 @@ jobs: - name: "Install build tools" run: cargo install cargo-make cargo-binutils - - name: "Prepare packages (Linux)" - run: | - sudo apt install software-properties-common - sudo add-apt-repository ppa:jacob/virtualisation - sudo apt update - if: runner.os == 'Linux' - - name: "Install dev libraries (Linux)" run: sudo apt install libudev-dev if: runner.os == 'Linux' @@ -127,14 +120,14 @@ jobs: if: runner.os == 'Windows' shell: pwsh - - name: Add custom Scoop bucket (Windows) + - name: Add custom Scoop bucket for QEMU (Windows) run: | scoop bucket add scoop-for-ci https://github.com/metta-systems/scoop-for-ci if: runner.os == 'Windows' shell: pwsh - name: Install QEMU (Windows) - run: scoop install qemu-510 + run: scoop install qemu-810 if: runner.os == 'Windows' shell: pwsh @@ -144,10 +137,5 @@ jobs: - name: 'Build kernel' run: cargo make build - - name: 'Run tests (macOS)' + - name: 'Run tests' run: cargo make test - if: runner.os == 'macOS' - - - name: 'Run tests (other OSes)' - run: env QEMU_MACHINE=raspi3 cargo make test - if: runner.os != 'macOS'