Always install release tools

This commit is contained in:
Félix Saparelli 2022-01-23 13:44:09 +13:00 committed by Félix Saparelli
parent 00e9b17043
commit 4a6d4350c5
1 changed files with 10 additions and 0 deletions

View File

@ -92,6 +92,16 @@ jobs:
path: ~/.cargo/registry
key: ${{ runner.os }}-cargo-registry-${{ hashFiles('Cargo.lock') }}
- name: Add musl tools
run: sudo apt install -y musl musl-dev musl-tools
if: endsWith(matrix.target, '-musl')
- name: Add aarch-gnu tools
run: sudo apt install -y gcc-aarch64-linux-gnu
if: startsWith(matrix.target, 'aarch64-unknown-linux')
- name: Add arm7hf-gnu tools
run: sudo apt install -y gcc-arm-linux-gnueabihf
if: startsWith(matrix.target, 'armv7-unknown-linux-gnueabihf')
- name: Install cargo-deb
if: startsWith(matrix.name, 'linux-')
uses: baptiste0928/cargo-install@v1