2727 run : sudo apt-get update && sudo apt-get install -y musl-tools
2828
2929 - name : Build patchbay (linux musl)
30- run : cargo build -p patchbay-cli --release --target x86_64-unknown-linux-musl
31-
32- - name : Build patchbay-vm (linux musl)
33- run : cargo build -p patchbay-vm --release --target x86_64-unknown-linux-musl
30+ run : cargo build -p patchbay-cli --all-features --release --target x86_64-unknown-linux-musl
3431
3532 - name : Build patchbay-serve (linux musl)
3633 run : cargo build -p patchbay-server --release --target x86_64-unknown-linux-musl
3936 run : |
4037 mkdir -p dist
4138 cp target/x86_64-unknown-linux-musl/release/patchbay dist/patchbay-x86_64-unknown-linux-musl
42- cp target/x86_64-unknown-linux-musl/release/patchbay-vm dist/patchbay-vm-x86_64-unknown-linux-musl
4339 cp target/x86_64-unknown-linux-musl/release/patchbay-serve dist/patchbay-serve-x86_64-unknown-linux-musl
4440 tar -C dist -czf dist/patchbay-x86_64-unknown-linux-musl.tar.gz patchbay-x86_64-unknown-linux-musl
45- tar -C dist -czf dist/patchbay-vm-x86_64-unknown-linux-musl.tar.gz patchbay-vm-x86_64-unknown-linux-musl
4641 tar -C dist -czf dist/patchbay-serve-x86_64-unknown-linux-musl.tar.gz patchbay-serve-x86_64-unknown-linux-musl
4742
4843 - uses : actions/upload-artifact@v4
@@ -68,14 +63,14 @@ jobs:
6863
6964 - uses : Swatinem/rust-cache@v2
7065
71- - name : Build patchbay-vm (${{ matrix.target }})
72- run : cargo build -p patchbay-vm --release --target ${{ matrix.target }}
66+ - name : Build patchbay (${{ matrix.target }})
67+ run : cargo build -p patchbay-cli --all-features --release --target ${{ matrix.target }}
7368
7469 - name : Package macOS artifact (${{ matrix.target }})
7570 run : |
7671 mkdir -p dist
77- cp target/${{ matrix.target }}/release/patchbay-vm dist/patchbay-vm -${{ matrix.target }}
78- tar -C dist -czf dist/patchbay-vm- ${{ matrix.target }}.tar.gz patchbay-vm -${{ matrix.target }}
72+ cp target/${{ matrix.target }}/release/patchbay dist/patchbay-${{ matrix.target }}
73+ tar -C dist -czf dist/patchbay-${{ matrix.target }}.tar.gz patchbay-${{ matrix.target }}
7974
8075 - uses : actions/upload-artifact@v4
8176 with :
0 commit comments