ci: include all members

This commit is contained in:
iff 2025-01-20 15:17:07 +01:00
parent b0279716c4
commit 4d23d29dc6

View file

@ -75,14 +75,14 @@ jobs:
- name: Build
if: ${{ matrix.cross == false}}
run:
cargo build --release --locked --target ${{ matrix.target }}
cargo build --release --all --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 --no-default-features --locked --target ${{ matrix.target }}
cross build --release --all --no-default-features --locked --target ${{ matrix.target }}
- name: Package deb
if: ${{ matrix.deb == true }}