fix: 🐛 Disable outdated test installers
This commit is contained in:
parent
ebb73e5cb0
commit
1be3f9e2e0
|
@ -79,13 +79,6 @@ jobs:
|
||||||
- name: "Install build tools"
|
- name: "Install build tools"
|
||||||
run: cargo install cargo-make cargo-binutils
|
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)"
|
- name: "Install dev libraries (Linux)"
|
||||||
run: sudo apt install libudev-dev
|
run: sudo apt install libudev-dev
|
||||||
if: runner.os == 'Linux'
|
if: runner.os == 'Linux'
|
||||||
|
@ -127,14 +120,14 @@ jobs:
|
||||||
if: runner.os == 'Windows'
|
if: runner.os == 'Windows'
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
|
|
||||||
- name: Add custom Scoop bucket (Windows)
|
- name: Add custom Scoop bucket for QEMU (Windows)
|
||||||
run: |
|
run: |
|
||||||
scoop bucket add scoop-for-ci https://github.com/metta-systems/scoop-for-ci
|
scoop bucket add scoop-for-ci https://github.com/metta-systems/scoop-for-ci
|
||||||
if: runner.os == 'Windows'
|
if: runner.os == 'Windows'
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
|
|
||||||
- name: Install QEMU (Windows)
|
- name: Install QEMU (Windows)
|
||||||
run: scoop install qemu-510
|
run: scoop install qemu-810
|
||||||
if: runner.os == 'Windows'
|
if: runner.os == 'Windows'
|
||||||
shell: pwsh
|
shell: pwsh
|
||||||
|
|
||||||
|
@ -144,10 +137,5 @@ jobs:
|
||||||
- name: 'Build kernel'
|
- name: 'Build kernel'
|
||||||
run: cargo make build
|
run: cargo make build
|
||||||
|
|
||||||
- name: 'Run tests (macOS)'
|
- name: 'Run tests'
|
||||||
run: cargo make test
|
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'
|
|
||||||
|
|
Loading…
Reference in New Issue