Skip to content

Commit

Permalink
CI/CD: drop libxml2
Browse files Browse the repository at this point in the history
It's preinstalled on GH ubuntu and macos images.
  • Loading branch information
szpajder committed Oct 19, 2024
1 parent d0500d1 commit 137f855
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}
Expand Down

0 comments on commit 137f855

Please sign in to comment.