File tree 1 file changed +4
-11
lines changed
1 file changed +4
-11
lines changed Original file line number Diff line number Diff line change 58
58
strategy :
59
59
matrix :
60
60
os : ["ubuntu-20.04", "windows-2019"]
61
- include :
62
- - os : " ubuntu-20.04"
63
- target : " x86_64-unknown-linux-musl"
64
- - os : " windows-2019"
65
- target : " x86_64-pc-windows-gnu"
66
61
fail-fast : false
67
62
runs-on : ${{ matrix.os }}
68
63
steps :
@@ -76,17 +71,15 @@ jobs:
76
71
run : |
77
72
rm -r .cargo
78
73
cd minion-tests
79
- TARGET=${{ matrix.target }}
80
- rustup target add $TARGET
81
- cargo build -Zunstable-options --out-dir=../out --target=$TARGET
74
+ rustup target add x86_64-unknown-linux-musl
75
+ cargo build -Zunstable-options --out-dir=../out --target=x86_64-unknown-linux-musl
82
76
- name : Compile tests (Windows)
83
77
if : matrix.os == 'windows-2019'
84
78
run : |
85
79
rm -r .cargo
86
80
cd minion-tests
87
- $TARGET=${{ matrix.target }}
88
- rustup target add $TARGET
89
- cargo build -Zunstable-options --out-dir=../out --target=$TARGET
81
+ rustup target add x86_64-pc-windows-gnu
82
+ cargo build -Zunstable-options --out-dir=../out --target=x86_64-pc-windows-gnu
90
83
- name : Run tests (Linux)
91
84
if : matrix.os == 'ubuntu-20.04'
92
85
timeout-minutes : 3
You can’t perform that action at this time.
0 commit comments