Skip to content

Commit

Permalink
chore: Update target for Linux-x86_64 in cd.yml
Browse files Browse the repository at this point in the history
abandon trying to compile to musl, the alsa-sys crate does not support static linking so that's a bust diwic/alsa-sys#10
  • Loading branch information
AnthonyMichaelTDM committed Jun 21, 2024
1 parent c910412 commit cfafbee
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
platform:
- os_name: Linux-x86_64
os: ubuntu-latest
target: x86_64-unknown-linux-musl
target: x86_64-unknown-linux-gnu

- os_name: Windows-x86_64
os: windows-latest
Expand Down Expand Up @@ -51,9 +51,9 @@ jobs:
with:
targets: ${{ matrix.platform.target }}

- name: Install musl-tools on Linux
run: sudo apt-get update --yes && sudo apt-get install --yes musl-tools musl-dev
if: contains(matrix.platform.os, 'ubuntu')
# - name: Install musl-tools on Linux
# run: sudo apt-get update --yes && sudo apt-get install --yes musl-tools musl-dev
# if: contains(matrix.platform.os, 'ubuntu')

- name: Install linux dependencies
run: |
Expand Down
3 changes: 0 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,6 @@ opt-level = 1
# shared dependencies
anyhow = { version = "1.0", default-features = false }
lofty = { version = "0.19.2" }
bliss-audio = { version = "0.7.1", default-features = false, features = [
"aubio-static",
] }
clap = { version = "4.5", default-features = false, features = [
"color",
"error-context",
Expand Down

0 comments on commit cfafbee

Please sign in to comment.