File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -48,17 +48,18 @@ jobs:
48
48
matrix :
49
49
include :
50
50
- target : x86_64-unknown-linux-musl
51
+ runner : ubuntu-24.04
51
52
- target : aarch64-unknown-linux-musl
52
- cross : true
53
+ runner : codspeedhq-arm64-ubuntu-24.04
53
54
54
- runs-on : ubuntu-latest
55
+ runs-on : ${{ matrix.runner }}
55
56
steps :
56
57
- uses : actions/checkout@v4
57
- - uses : moonrepo/setup-rust@v0
58
+ - uses : moonrepo/setup-rust@v1
58
59
with :
59
- bins : cross
60
+ targets : ${{ matrix.target }}
60
61
61
- - run : ${{ matrix.cross && 'cross' || ' cargo' }} build --locked --release --bin cargo-codspeed --target ${{ matrix.target }}
62
+ - run : cargo build --locked --release --bin cargo-codspeed --target ${{ matrix.target }}
62
63
63
64
- name : Upload Release Asset
64
65
if : github.event_name != 'workflow_dispatch'
You can’t perform that action at this time.
0 commit comments