Skip to content

Commit

Permalink
CI/CD: don't install glib and sqlite
Browse files Browse the repository at this point in the history
They're preinstalled in GH ubuntu and macos CI/CD images.
  • Loading branch information
szpajder committed Oct 19, 2024
1 parent 71e325d commit d27f25a
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 libconfig++-dev libglib2.0-dev libsoapysdr-dev librtlsdr-dev libsqlite3-dev libzmq3-dev libprotobuf-c-dev; fi
if [[ "$RUNNER_OS" == "Linux" ]]; then sudo apt-get install libconfig++-dev libsoapysdr-dev librtlsdr-dev libzmq3-dev libprotobuf-c-dev; fi
if [[ "$RUNNER_OS" == "macOS" ]]; then brew update; fi
if [[ "$RUNNER_OS" == "macOS" ]]; then brew install libconfig glib soapysdr librtlsdr sqlite zmq protobuf-c ; fi
if [[ "$RUNNER_OS" == "macOS" ]]; then brew install libconfig soapysdr librtlsdr zmq protobuf-c ; fi
- name: Install libacars
run: |
Expand Down

0 comments on commit d27f25a

Please sign in to comment.