Skip to content

Commit 20aec76

Browse files
authored
chore(ci): ensure the right qemu bin is installed (#100)
* chore(ci): ensure the right qemu bin is installed Apparently `apt-get install qemu` *used* to provide the `qemu-system-x86_64` binary, but maybe it doesn't anymore? Maybe explicitly trying to install that package will fix CI? Signed-off-by: Eliza Weisman <[email protected]> * ahahahaha i committed the wrong file, FML Signed-off-by: Eliza Weisman <[email protected]>
1 parent 7973704 commit 20aec76

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/rust.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,9 @@ jobs:
155155
use-tool-cache: true
156156
- uses: actions/checkout@v2
157157
- name: install qemu
158-
run: sudo apt-get update && sudo apt-get install qemu
158+
run: |
159+
sudo apt-get update
160+
sudo apt-get install qemu-system-x86
159161
- name: run tests
160162
uses: actions-rs/[email protected]
161163
with:

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ mycelium-util = { path = "util" }
2828
rlibc = "1.0"
2929

3030
[target.'cfg(target_arch = "x86_64")'.dependencies]
31-
bootloader = {version = "0.9.11", features = ["map_physical_memory"] }
31+
bootloader = {version = "0.9.16", features = ["map_physical_memory"] }
3232
hal-x86_64 = { path = "hal-x86_64" }
3333

3434
[dependencies.tracing]

0 commit comments

Comments
 (0)