We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 795aa74 commit 80e5349Copy full SHA for 80e5349
.github/workflows/release.yml
@@ -48,15 +48,16 @@ jobs:
48
matrix:
49
include:
50
- target: x86_64-unknown-linux-musl
51
+ runner: ubuntu-latest
52
- target: aarch64-unknown-linux-musl
- cross: true
53
+ runner: codspeedhq-arm64-ubuntu-24.04
54
- runs-on: ubuntu-latest
55
+ runs-on: ${{ matrix.runner }}
56
steps:
57
- uses: actions/checkout@v4
58
- uses: moonrepo/setup-rust@v0
59
with:
- bins: cross
60
+ targets: ${{ matrix.cross && '' || matrix.target }}
61
62
- run: ${{ matrix.cross && 'cross' || 'cargo' }} build --locked --release --bin cargo-codspeed --target ${{ matrix.target }}
63
0 commit comments