File tree Expand file tree Collapse file tree 3 files changed +6
-12
lines changed Expand file tree Collapse file tree 3 files changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -28,12 +28,10 @@ jobs:
28
28
- platform : linux/amd64
29
29
dockerfile : Dockerfile
30
30
arch : amd64
31
- aarch : x86_64
32
31
target_dir : x86_64-unknown-linux-musl
33
32
- platform : linux/arm64
34
33
dockerfile : Dockerfile
35
34
arch : arm64
36
- aarch : aarch64
37
35
target_dir : aarch64-unknown-linux-musl
38
36
steps :
39
37
- uses : actions/checkout@v4
75
73
tags : rustmusl-temp
76
74
build-args : |
77
75
CHANNEL=nightly
78
- AARCH=${{ matrix.aarch }}
79
76
80
77
- name : Run tests
81
78
shell : bash
Original file line number Diff line number Diff line change @@ -28,12 +28,10 @@ jobs:
28
28
- platform : linux/amd64
29
29
dockerfile : Dockerfile
30
30
arch : amd64
31
- aarch : x86_64
32
31
target_dir : x86_64-unknown-linux-musl
33
32
- platform : linux/arm64
34
33
dockerfile : Dockerfile
35
34
arch : arm64
36
- aarch : aarch64
37
35
target_dir : aarch64-unknown-linux-musl
38
36
steps :
39
37
- uses : actions/checkout@v4
87
85
tags : rustmusl-temp
88
86
build-args : |
89
87
CHANNEL=stable
90
- AARCH=${{ matrix.aarch }}
91
88
if : ${{ steps.stablecheck.outputs.BUILD }}
92
89
93
90
- name : Run tests
Original file line number Diff line number Diff line change 3
3
default :
4
4
@ just --list --unsorted --color=always
5
5
6
- _ build channel platform aarch :
7
- docker build --build-arg CHANNEL=" {{ channel}} " --build-arg AARCH= " {{ aarch }} " -- platform=" {{ platform}} " -t rustmusl-temp . -f Dockerfile
6
+ _ build channel platform :
7
+ docker build --build-arg CHANNEL=" {{ channel}} " --platform=" {{ platform}} " -t rustmusl-temp . -f Dockerfile
8
8
# Build the stable x86 container
9
- build-stable-amd : (_build " stable" " linux/amd64" " x86_64" )
9
+ build-stable-amd : (_build " stable" " linux/amd64" )
10
10
# Build the nightly x86 container
11
- build-nightly-amd : (_build " nightly" " linux/amd64" " x86_64" )
11
+ build-nightly-amd : (_build " nightly" " linux/amd64" )
12
12
# Build the stable arm container
13
- build-stable-arm : (_build " stable" " linux/arm64" " aarch64" )
13
+ build-stable-arm : (_build " stable" " linux/arm64" )
14
14
# Build the nightly arm container
15
- build-nightly-arm : (_build " nightly" " linux/arm64" " aarch64" )
15
+ build-nightly-arm : (_build " nightly" " linux/arm64" )
16
16
17
17
# Shell into the built container
18
18
run :
You can’t perform that action at this time.
0 commit comments