From 929920edb2e16c8582789c3ed26d74a0ca0b34e5 Mon Sep 17 00:00:00 2001 From: Val Lorentz Date: Fri, 17 Nov 2023 15:42:41 +0100 Subject: [PATCH] Install zstd --- .gitea/workflows/ci.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c0cf6b5..155d3f7 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -9,6 +9,12 @@ jobs: steps: - 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 uses: actions/cache@v3 with: @@ -60,8 +66,9 @@ jobs: - name: Install system dependencies run: | + # zstd is an optional dep of actions/cache@v3 apt-get -y update - apt-get -y install lld + apt-get -y install lld zstd - name: Cache Rust uses: actions/cache@v3