1
0
mirror of https://github.com/facebook/zstd.git synced 2025-03-07 01:10:04 +02:00

fix make-external-compressors "only-lzma" test

missing the liblzma-dev package
This commit is contained in:
Yann Collet 2025-01-15 15:24:27 -08:00
parent 0e819c9f93
commit 196e76efe1

View File

@ -199,7 +199,9 @@ jobs:
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # tag=v4.1.1
- name: Build with ${{matrix.name}}
run: ${{matrix.flags}} make zstd
run: |
sudo apt install liblzma-dev
${{matrix.flags}} make zstd
implicit-fall-through: