Skip to content

Commit

Permalink
Try using ARM64 runners from GitHub
Browse files Browse the repository at this point in the history
Let's see if we can run our aarch64 tests natively instead of through
QEMU emulation...

prtest:linux-arm64
  • Loading branch information
alexcrichton committed Jan 17, 2025
1 parent 4a043fd commit 795f5fb
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions ci/build-test-matrix.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ const GENERIC_BUCKETS = 3;
const SINGLE_CRATE_BUCKETS = ["wasmtime", "wasmtime-cli", "wasmtime-wasi"];

const ubuntu = 'ubuntu-24.04';
const ubuntu_arm = 'ubuntu-24.04-arm';
const windows = 'windows-2022';
const macos = 'macos-14';

Expand Down Expand Up @@ -95,12 +96,8 @@ const FULL_MATRIX = [
"filter": "mingw-x64"
},
{
"os": ubuntu,
"os": ubuntu_arm,
"target": "aarch64-unknown-linux-gnu",
"gcc_package": "gcc-aarch64-linux-gnu",
"gcc": "aarch64-linux-gnu-gcc",
"qemu": "qemu-aarch64 -L /usr/aarch64-linux-gnu",
"qemu_target": "aarch64-linux-user",
"name": "Test Linux arm64",
"filter": "linux-arm64",
"isa": "aarch64",
Expand Down

0 comments on commit 795f5fb

Please sign in to comment.