From 2fb805076ef2643a07a345cb4749a6817a8a4c95 Mon Sep 17 00:00:00 2001 From: Ruslan Khafizov Date: Mon, 14 Oct 2024 17:13:56 +0800 Subject: [PATCH] Add liblzma-dev dep --- .github/workflows/haskell.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/haskell.yml b/.github/workflows/haskell.yml index 49afcc027..8145881c1 100644 --- a/.github/workflows/haskell.yml +++ b/.github/workflows/haskell.yml @@ -40,7 +40,7 @@ jobs: - name: Install Ubuntu Prerequisites (libpcre) if: startsWith(matrix.os, 'ubuntu') run: | - sudo apt-get install libpcre3-dev + sudo apt-get install libpcre3-dev liblzma-dev - name: Install MacOS Prerequisites (libpcre) if: startsWith(matrix.os, 'macOS')