Install zstd
This commit is contained in:
@ -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
|
||||||
|
Reference in New Issue
Block a user