Skip to content

Commit

Permalink
Update build/test images to Ubuntu 24.04 (#9728)
Browse files Browse the repository at this point in the history
Manually updating some images after the pinning in #9717. There's a few
more images after this but this should be the lion's share of the update.

prtest:full
  • Loading branch information
alexcrichton authored Dec 4, 2024
1 parent f0a15de commit 06103f7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -690,7 +690,7 @@ jobs:
set -ex
sudo apt-get update
sudo apt-get install -y ${{ matrix.gcc_package }} ninja-build
sudo apt-get install -y ${{ matrix.gcc_package }}
# Configure Cargo for cross compilation and tell it how it can run
# cross executables
Expand Down Expand Up @@ -723,6 +723,9 @@ jobs:
exit 0
fi
# Install build dependencies of QEMU itself.
sudo apt-get install -y libglib2.0-dev ninja-build
# Download and build qemu from source since the most recent release is
# way faster at arm emulation than the current version github actions'
# ubuntu image uses. Disable as much as we can to get it to build
Expand Down
2 changes: 1 addition & 1 deletion ci/build-build-matrix.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
// This is a separate script primarily to write out all the release
// targets/platforms once and then duplicate them all with a "min" build.

const ubuntu = 'ubuntu-22.04';
const ubuntu = 'ubuntu-24.04';
const windows = 'windows-2022';
const macos = 'macos-14';

Expand Down
2 changes: 1 addition & 1 deletion ci/build-test-matrix.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const GENERIC_BUCKETS = 3;
// compile-and-test crates.
const SINGLE_CRATE_BUCKETS = ["wasmtime", "wasmtime-cli", "wasmtime-wasi"];

const ubuntu = 'ubuntu-22.04';
const ubuntu = 'ubuntu-24.04';
const windows = 'windows-2022';
const macos = 'macos-14';

Expand Down

0 comments on commit 06103f7

Please sign in to comment.