From ae381408ec577d4e4d5c4c341a5e95b0b0b0259f Mon Sep 17 00:00:00 2001 From: Tim de Jager Date: Thu, 9 Jan 2025 15:28:02 +0100 Subject: [PATCH] feat: install lzma for now until we convert to pixi (#54) --- .github/workflows/rust-compile.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/rust-compile.yml b/.github/workflows/rust-compile.yml index dc4256d..9b633b8 100644 --- a/.github/workflows/rust-compile.yml +++ b/.github/workflows/rust-compile.yml @@ -59,6 +59,12 @@ jobs: components: rustfmt cache: false + - name: Install LZMA and dependencies + if: matrix.os == 'ubuntu-latest' + run: | + sudo apt-get update + sudo apt-get install -y xz-utils liblzma-dev + - uses: Swatinem/rust-cache@v2 - name: Install cargo nextest