Skip to content

Commit

Permalink
Merge pull request #4753 from pnorman/xmllib_ci
Browse files Browse the repository at this point in the history
Update apt before installing libxml
  • Loading branch information
sommerluk authored Dec 15, 2022
2 parents 0ce4f76 + 83f8f58 commit 62e8d54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Install python dependencies
run: pip install pyyaml colormath
- name: Set up xmllint
run: sudo apt-get install -qq --no-install-recommends libxml2-utils
run: sudo apt-get update -qq && sudo apt-get install -qq --no-install-recommends libxml2-utils
- name: Set up CartoCSS
run: npm install -g [email protected]
- name: Set up shell
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Install osm2pgsql and database
run: sudo apt-get install -qq --no-install-recommends osm2pgsql postgresql-14-postgis-3 gdal-bin
run: sudo apt-get update -qq && sudo apt-get install -qq --no-install-recommends osm2pgsql postgresql-14-postgis-3 gdal-bin
- name: Wait for database
run : sudo pg_ctlcluster 14 main start; until pg_isready; do sleep 0.5; done
- name: Setup database
Expand Down

0 comments on commit 62e8d54

Please sign in to comment.