ci: change all to workspace

This commit is contained in:
iff 2025-01-27 23:53:52 +01:00
parent 340504a54e
commit 28a59f8fda

View file

@ -75,14 +75,14 @@ jobs:
- name: Build
if: ${{ matrix.cross == false}}
run:
cargo build --release --all --locked --target ${{ matrix.target }}
cargo build --release --workspace --locked --target ${{ matrix.target }}
- name: Build (cross)
if: ${{ matrix.cross == true}}
# cross 0.2.5 broken for android
run: |
cargo install cross --locked --git https://github.com/cross-rs/cross --rev 99b8069c0d977a14cd421ad8a3ef3255dc5802be
cross build --release --all --no-default-features --locked --target ${{ matrix.target }}
cross build --release --workspace --no-default-features --locked --target ${{ matrix.target }}
- name: Package deb
if: ${{ matrix.deb == true }}