Install lzma, bzip & zstd in integration test CI

Signed-off-by: Jiahao XU <Jiahao_XU@outlook.com>
This commit is contained in:
Jiahao XU 2022-07-23 19:40:22 +10:00
parent b22a55f08f
commit 1499f5c201
No known key found for this signature in database
GPG key ID: 591C0B03040416D6

View file

@ -79,6 +79,12 @@ jobs:
if: ${{ matrix.target == 'x86_64-unknown-linux-musl' }} if: ${{ matrix.target == 'x86_64-unknown-linux-musl' }}
run: sudo apt-get install -y musl-tools run: sudo apt-get install -y musl-tools
- name: Install liblzma-dev, libzip-dev and libzstd-dev
if: ${{ startsWith(matrix.target, 'x86_64-unknown-linux-') }}
run: |
sudo apt update
sudo apt install -y --no-install-recommends liblzma-dev libzip-dev libzstd-dev
- name: Build release - name: Build release
uses: actions-rs/cargo@v1 uses: actions-rs/cargo@v1
if: ${{ startsWith(github.ref, 'refs/tags/v') }} if: ${{ startsWith(github.ref, 'refs/tags/v') }}