Skip to content

Commit 9d2145a

Browse files
committed
[CI] sep build
1 parent cddd569 commit 9d2145a

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/rust.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,16 @@ jobs:
7171
with:
7272
toolchain: nightly
7373
override: true
74-
- name: Compile tests
74+
- name: Compile tests (Linux)
75+
if: matrix.os == 'ubuntu-20.04'
76+
run: |
77+
rm -r .cargo
78+
cd minion-tests
79+
$TARGET=${{ matrix.target }}
80+
rustup target add $TARGET
81+
cargo build -Zunstable-options --out-dir=../out --target=$TARGET
82+
- name: Compile tests (Windows)
83+
if: matrix.os == 'windows-2019'
7584
run: |
7685
rm -r .cargo
7786
cd minion-tests

0 commit comments

Comments
 (0)