-
-
Notifications
You must be signed in to change notification settings - Fork 223
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cdfe764
commit b285408
Showing
78 changed files
with
16,346 additions
and
4,848 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 |
---|---|---|
|
@@ -126,6 +126,8 @@ jobs: | |
# https://github.com/docker/setup-qemu-action | ||
with: | ||
platforms: linux/amd64,linux/arm64 | ||
- name: Set up gdal-bin | ||
run: sudo apt-get install -y gdal-bin | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
# https://github.com/docker/setup-buildx-action | ||
|
@@ -337,6 +339,9 @@ jobs: | |
with: { port: '5412', output-unix-paths: 'yes' } | ||
- name: Checkout sources | ||
uses: actions/checkout@v4 | ||
- name: Install gdal-bin | ||
if: matrix.os == 'ubuntu-latest' | ||
run: sudo apt-get install -y gdal-bin | ||
- name: Init database | ||
run: | | ||
echo "DATABASE_URL=${{ steps.pg.outputs.connection-uri }}" | ||
|
@@ -455,6 +460,8 @@ jobs: | |
uses: nyurik/[email protected] | ||
id: nginx | ||
with: { port: '5412', output-unix-paths: 'yes' } | ||
- name: Install gdal-bin | ||
run: sudo apt-get install -y gdal-bin | ||
- name: Copy static files | ||
run: cp -r tests/fixtures/pmtiles2/* ${{ steps.nginx.outputs.html-dir }} | ||
- name: Init database | ||
|
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
Oops, something went wrong.