Skip to content

Commit

Permalink
make binaries executable
Browse files Browse the repository at this point in the history
  • Loading branch information
marcelveldt committed Sep 30, 2024
1 parent 54a3697 commit 7c051ae
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build_librespot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ jobs:
lipo -create \
-arch x86_64 target/release/librespot \
-arch arm64 target/aarch64-apple-darwin/release/librespot \
-output releases/librespot
-output releases/librespot-macos-arm64
chmod +x releases/librespot-macos-arm64
- name: Upload artifacts
uses: actions/upload-artifact@v3
Expand Down Expand Up @@ -63,11 +64,13 @@ jobs:
run: |
cargo build --release --no-default-features --features "passthrough-decoder" --target=x86_64-unknown-linux-musl
cp target/x86_64-unknown-linux-musl/release/librespot releases/linux/librespot-linux-x86_64
chmod +x releases/linux/librespot-linux-x86_64
- name: Build ARMv8
run: |
./cross build --release --no-default-features --features "passthrough-decoder" --target=aarch64-unknown-linux-musl
cp target/aarch64-unknown-linux-musl/release/librespot releases/linux/librespot-linux-aarch64
chmod +x releases/linux/librespot-linux-aarch64
- name: Upload artifacts
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 7c051ae

Please sign in to comment.