From 137f855b776833f5365b58bdd0a1632468ffe845 Mon Sep 17 00:00:00 2001 From: Tomasz Lemiech Date: Sat, 19 Oct 2024 18:13:42 +0200 Subject: [PATCH] CI/CD: drop libxml2 It's preinstalled on GH ubuntu and macos images. --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 255ad8f..baf86b0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -25,9 +25,9 @@ jobs: - name: Install packaged dependencies run: | if [[ "$RUNNER_OS" == "Linux" ]]; then sudo apt-get update; fi - if [[ "$RUNNER_OS" == "Linux" ]]; then sudo apt-get install libxml2-dev libjansson-dev; fi + if [[ "$RUNNER_OS" == "Linux" ]]; then sudo apt-get install libjansson-dev; fi if [[ "$RUNNER_OS" == "macOS" ]]; then brew update; fi - if [[ "$RUNNER_OS" == "macOS" ]]; then brew install libxml2 jansson; fi + if [[ "$RUNNER_OS" == "macOS" ]]; then brew install jansson; fi - name: Configure CMake run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}