Skip to content

Commit 2d18ac3

Browse files
authored
include audio feature
1 parent ad8f1d9 commit 2d18ac3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ jobs:
4343
- { os: macos-latest, target: x86_64-apple-darwin }
4444
- { os: macos-latest, target: aarch64-apple-darwin }
4545
- { os: ubuntu-latest, target: x86_64-unknown-linux-gnu }
46-
- { os: ubuntu-latest, target: x86_64-unknown-linux-musl }
4746
- { os: windows-latest, target: x86_64-pc-windows-msvc }
4847
- { os: windows-latest, target: aarch64-pc-windows-msvc }
4948
steps:
@@ -52,12 +51,14 @@ jobs:
5251
# Install dependencies
5352
- if: matrix.target == 'x86_64-unknown-linux-musl'
5453
run: sudo apt-get install -y musl-tools
54+
- if: matrix.os == 'ubuntu-latest'
55+
run: sudo apt-get install -y libasound2-dev libudev-dev
5556

5657
# Build
5758
- name: Install target
5859
run: rustup target add ${{ matrix.target }}
5960
- name: Build
60-
run: cargo build --bin uiua --release --target ${{ matrix.target }} --verbose
61+
run: cargo build --bin uiua --features audio --release --target ${{ matrix.target }} --verbose
6162

6263
- name: Zip
6364
run: 7z a -tzip uiua-bin-${{matrix.target}}.zip ./target/${{matrix.target}}/release/uiua${{env.BINARY_EXT}}

0 commit comments

Comments
 (0)