File tree 2 files changed +12
-11
lines changed
2 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 1
1
self-hosted-runner :
2
2
labels :
3
3
- builder
4
+ - linux-amd64-m-xlarge
5
+ - linux-arm64-m-xlarge
6
+ - linux-amd64-m-2xlarge
7
+ - linux-arm64-m-2xlarge
8
+ - linux-amd64-c-2xlarge
9
+ - linux-arm64-c-2xlarge
Original file line number Diff line number Diff line change 15
15
jobs :
16
16
build :
17
17
name : " Build nox (${{ matrix.arch }})"
18
- runs-on : builder
18
+ runs-on : ${{ matrix.runner }}
19
19
timeout-minutes : 60
20
20
21
- env : ${{ matrix.env }}
21
+ env :
22
+ RUSTFLAGS : " -D warnings --cfg tokio_unstable -C link-arg=-B/usr/local/bin/mold"
23
+ RUSTC_WRAPPER : " sccache"
22
24
23
25
strategy :
24
26
fail-fast : false
25
27
matrix :
26
28
include :
27
29
- arch : amd64
28
30
target : x86_64-unknown-linux-gnu
29
- env :
30
- RUSTFLAGS : " -D warnings --cfg tokio_unstable -C link-arg=-B/usr/local/bin/mold"
31
- RUSTC_WRAPPER : " sccache"
31
+ runner : linux-amd64-c-2xlarge
32
32
- arch : arm64
33
33
target : aarch64-unknown-linux-gnu
34
- env :
35
- RUSTFLAGS : " -D warnings --cfg tokio_unstable -C link-arg=-B/usr/local/bin/mold"
36
- RUSTC_WRAPPER : " sccache"
37
- CARGO_TARGET_AARCH64_UNKNOWN_LINUX_GNU_LINKER : aarch64-linux-gnu-gcc
38
- CC_aarch64_unknown_linux_gnu : aarch64-linux-gnu-gcc
39
- CXX_aarch64_unknown_linux_gnu : aarch64-linux-gnu-g++
34
+ runner : linux-arm64-c-2xlarge
40
35
41
36
steps :
42
37
- name : Checkout repository
You can’t perform that action at this time.
0 commit comments