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 @@ -48,16 +48,16 @@ jobs:
48
48
run : make diff
49
49
- name : Compile
50
50
if : matrix.name != 'windows-amd64'
51
- run : cargo build --release --all-features
51
+ run : cargo build --release
52
52
- name : Compile Windows
53
53
if : matrix.name == 'windows-amd64'
54
54
# On Windows we only build using the GNU toolchain (not MSVC, the default)
55
- run : cargo build --release --all-features -- target ${{ matrix.toolchain }}
55
+ run : cargo build --release --target ${{ matrix.toolchain }}
56
56
- name : Compile staticlib
57
57
if : contains(matrix.toolchain, 'musl')
58
58
# Linux requires a different toolchain for static lib generation
59
59
run : |
60
- cargo build --release --all-features -- target ${{ matrix.toolchain }}
60
+ cargo build --release --target ${{ matrix.toolchain }}
61
61
# overwrite static glibc static lib
62
62
mv target/${{ matrix.toolchain }}/release/libed25519_bip32.a target/release
63
63
- name : Prepare files
You can’t perform that action at this time.
0 commit comments