Install zstd

This commit is contained in:
2023-11-17 15:42:41 +01:00
parent dd404147ab
commit 929920edb2

View File

@ -9,6 +9,12 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Install system dependencies
run: |
# zstd is an optional dep of actions/cache@v3
apt-get -y update
apt-get -y install zstd
- name: Cache Rust - name: Cache Rust
uses: actions/cache@v3 uses: actions/cache@v3
with: with:
@ -60,8 +66,9 @@ jobs:
- name: Install system dependencies - name: Install system dependencies
run: | run: |
# zstd is an optional dep of actions/cache@v3
apt-get -y update apt-get -y update
apt-get -y install lld apt-get -y install lld zstd
- name: Cache Rust - name: Cache Rust
uses: actions/cache@v3 uses: actions/cache@v3