File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 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}}
You can’t perform that action at this time.
0 commit comments