Skip to content

Commit

Permalink
chore(ci): ensure the right qemu bin is installed (#100)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
hawkw authored Mar 28, 2021
1 parent 7973704 commit 20aec76
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,9 @@ jobs:
use-tool-cache: true
- uses: actions/checkout@v2
- name: install qemu
run: sudo apt-get update && sudo apt-get install qemu
run: |
sudo apt-get update
sudo apt-get install qemu-system-x86
- name: run tests
uses: actions-rs/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ mycelium-util = { path = "util" }
rlibc = "1.0"

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

[dependencies.tracing]
Expand Down

0 comments on commit 20aec76

Please sign in to comment.