Skip to content

Commit

Permalink
Switch tests over to Ubuntu 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
YtvwlD committed Jun 7, 2024
1 parent 77db427 commit d0af482
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ on: [push]
jobs:
test:
# The 64-bit tests don't work on Ubuntu 20.04.
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: Cache Cargo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
jobs:
test:
# The 64-bit tests don't work on Ubuntu 20.04.
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- name: Cache Cargo
Expand Down
2 changes: 1 addition & 1 deletion towbootctl/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ pub fn boot_image(
.arg("-serial").arg("stdio")
.arg("-bios").arg(firmware_path);
if use_kvm {
qemu.arg("-machine").arg("pc,accel=kvm,kernel-irqchip=off");
qemu.arg("-machine").arg("pc,accel=kvm");
}
if use_gdb {
info!("The machine starts paused, waiting for GDB to attach to localhost:1234.");
Expand Down

0 comments on commit d0af482

Please sign in to comment.