File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -32,17 +32,17 @@ jobs:
32
32
- name : Install Rust toolchain
33
33
uses : dtolnay/rust-toolchain@stable
34
34
- name : Build - General
35
- if : ${{ matrix.cross == general }}
35
+ if : ${{ matrix.cross == ' general' }}
36
36
run : |
37
37
rustup target add ${{ matrix.target }}
38
38
cargo build --release --target ${{ matrix.target }} --target-dir target/${{ matrix.platform }}
39
39
- name : Build - musl
40
- if : ${{ matrix.cross == musl }}
40
+ if : ${{ matrix.cross == ' musl' }}
41
41
run : |
42
42
cargo install cross
43
43
cross build --release --target ${{ matrix.target }} --target-dir target/${{ matrix.platform }}
44
44
- name : Build - aarch64
45
- if : ${{ matrix.cross == aarch64 }}
45
+ if : ${{ matrix.cross == ' aarch64' }}
46
46
env :
47
47
CC_aarch64_unknown_linux_gnu : aarch64-linux-gnu-gcc
48
48
CXX_aarch64_unknown_linux_gnu : aarch64-linux-gnu-g++
You can’t perform that action at this time.
0 commit comments