Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build-and-test-qemu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
- 'main'
pull_request:
jobs:
test-on-ubuntu-latest-with-qemu:
test-on-ubuntu-2404-with-qemu:
strategy:
matrix:
# only test specific parameter pairs, not the cross product
Expand All @@ -16,15 +16,15 @@ jobs:
packages: "g++-arm-linux-gnueabihf libc6-dev-armhf-cross"
# arm feature detection is unstable
# should be the same as rust-toolchain.toml
toolchain: nightly-2025-05-01
toolchain: nightly-2025-05-01
- target: "aarch64-unknown-linux-gnu"
linker: "aarch64-linux-gnu-gcc"
wrapper: "qemu-aarch64-static"
packages: "g++-aarch64-linux-gnu libc6-dev-arm64-cross"
toolchain: stable # aarch64 feature detection is stable
- target: "x86_64-unknown-linux-gnu"
linker: "cc"
wrapper: "qemu-x86_64-static -cpu max" # enable AVX512
wrapper: "qemu-x86_64-static -cpu host" # enable all features supported by the host
packages: ""
# NOTE: This appears to work for Ubuntu 22.04 and other systems
# with a recent version of GNU ld (e.g. 2.38) whereas Ubuntu 20.04
Expand All @@ -37,7 +37,7 @@ jobs:
# riscv64 feature detection is unstable
# should be the same as rust-toolchain.toml
toolchain: nightly-2025-05-01
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
name: test on ${{ matrix.target }}
steps:
- name: install prerequisites
Expand Down
Loading