Skip to content

Commit

Permalink
CI: make sure apt is up to date
Browse files Browse the repository at this point in the history
  • Loading branch information
lonvia committed Aug 9, 2024
1 parent a323da4 commit 19747be
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,9 @@ jobs:
- uses: actions/checkout@v4

- name: Install packages
run: sudo apt-get install -y -qq libboost-dev libexpat1-dev zlib1g-dev libbz2-dev libproj-dev libgeos-dev liblz4-dev
run: |
sudo apt-get update -y -qq
sudo apt-get install -y -qq libboost-dev libexpat1-dev zlib1g-dev libbz2-dev libproj-dev libgeos-dev liblz4-dev
- name: Set up Python 3.6
uses: actions/setup-python@v5
Expand Down Expand Up @@ -188,7 +190,9 @@ jobs:
python-version: "${{ matrix.python }}"

- name: Install packages
run: sudo apt-get install -y -qq libboost-dev libexpat1-dev zlib1g-dev libbz2-dev libproj-dev libgeos-dev liblz4-dev
run: |
sudo apt-get update -y -qq
sudo apt-get install -y -qq libboost-dev libexpat1-dev zlib1g-dev libbz2-dev libproj-dev libgeos-dev liblz4-dev
if: ${{ matrix.flavour == 'linux' }}

- name: Install packages
Expand Down

0 comments on commit 19747be

Please sign in to comment.