-
Notifications
You must be signed in to change notification settings - Fork 819
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4753 from pnorman/xmllib_ci
Update apt before installing libxml
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 | ||
|