Skip to content

Commit 08a4fb7

Browse files
committed
use default features to build librespot
1 parent 92e4079 commit 08a4fb7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build_librespot.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
2424
- name: Build
2525
run: |
26-
cargo build --release --no-default-features --features "passthrough-decoder"
27-
cargo build --target=aarch64-apple-darwin --release --no-default-features --features "passthrough-decoder"
26+
cargo build --release
27+
cargo build --target=aarch64-apple-darwin --release
2828
2929
- name: Build fat binary
3030
run: |
@@ -62,13 +62,13 @@ jobs:
6262

6363
- name: Build x86_64
6464
run: |
65-
cargo build --release --no-default-features --features "passthrough-decoder" --target=x86_64-unknown-linux-musl
65+
cargo build --release --target=x86_64-unknown-linux-musl
6666
cp target/x86_64-unknown-linux-musl/release/librespot releases/linux/librespot-linux-x86_64
6767
chmod +x releases/linux/librespot-linux-x86_64
6868
6969
- name: Build ARMv8
7070
run: |
71-
./cross build --release --no-default-features --features "passthrough-decoder" --target=aarch64-unknown-linux-musl
71+
./cross build --target=aarch64-unknown-linux-musl
7272
cp target/aarch64-unknown-linux-musl/release/librespot releases/linux/librespot-linux-aarch64
7373
chmod +x releases/linux/librespot-linux-aarch64
7474

0 commit comments

Comments
 (0)