Skip to content

Commit 19feebb

Browse files
committed
Make cargo build great again
hidapi dependency causes issues with `--all-features`, which should be unnecessary anyway
1 parent 45f1e8a commit 19feebb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,16 @@ jobs:
4848
run: make diff
4949
- name: Compile
5050
if: matrix.name != 'windows-amd64'
51-
run: cargo build --release --all-features
51+
run: cargo build --release
5252
- name: Compile Windows
5353
if: matrix.name == 'windows-amd64'
5454
# 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 }}
5656
- name: Compile staticlib
5757
if: contains(matrix.toolchain, 'musl')
5858
# Linux requires a different toolchain for static lib generation
5959
run: |
60-
cargo build --release --all-features --target ${{ matrix.toolchain }}
60+
cargo build --release --target ${{ matrix.toolchain }}
6161
# overwrite static glibc static lib
6262
mv target/${{ matrix.toolchain }}/release/libed25519_bip32.a target/release
6363
- name: Prepare files

0 commit comments

Comments
 (0)