diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-06-09 08:42:37 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2024-06-09 08:42:37 -0400 |
commit | bb547b53246681ea602ee13d8db06b39b9d13cda (patch) | |
tree | 506e3679ce7a467a282e4143e2f319d8fb70ea7b | |
parent | f6b1cee2969ed36f158f3bdcbf435061b9514e7e (diff) | |
download | stasis-bb547b53246681ea602ee13d8db06b39b9d13cda.tar.gz |
Fix missing xmllint
-rw-r--r-- | .github/workflows/cmake-multi-platform.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index 7f008cd..ac9130d 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -40,7 +40,7 @@ jobs: - name: Install Linux dependencies if: matrix.os == 'ubuntu-latest' run: > - sudo apt install -y libcurl4-openssl-dev libxml2-dev rsync + sudo apt install -y libcurl4-openssl-dev libxml2-dev libxml2-utils rsync - name: Configure CMake run: > |