Skip to content

Commit b285408

Browse files
committed
wip
1 parent cdfe764 commit b285408

File tree

78 files changed

+16346
-4848
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+16346
-4848
lines changed

.github/workflows/ci.yml

+7
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,8 @@ jobs:
126126
# https://github.com/docker/setup-qemu-action
127127
with:
128128
platforms: linux/amd64,linux/arm64
129+
- name: Set up gdal-bin
130+
run: sudo apt-get install -y gdal-bin
129131
- name: Set up Docker Buildx
130132
uses: docker/setup-buildx-action@v3
131133
# https://github.com/docker/setup-buildx-action
@@ -337,6 +339,9 @@ jobs:
337339
with: { port: '5412', output-unix-paths: 'yes' }
338340
- name: Checkout sources
339341
uses: actions/checkout@v4
342+
- name: Install gdal-bin
343+
if: matrix.os == 'ubuntu-latest'
344+
run: sudo apt-get install -y gdal-bin
340345
- name: Init database
341346
run: |
342347
echo "DATABASE_URL=${{ steps.pg.outputs.connection-uri }}"
@@ -455,6 +460,8 @@ jobs:
455460
uses: nyurik/[email protected]
456461
id: nginx
457462
with: { port: '5412', output-unix-paths: 'yes' }
463+
- name: Install gdal-bin
464+
run: sudo apt-get install -y gdal-bin
458465
- name: Copy static files
459466
run: cp -r tests/fixtures/pmtiles2/* ${{ steps.nginx.outputs.html-dir }}
460467
- name: Init database

docs/src/development.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Install a few required libs and tools:
2525

2626
```bash, ignore
2727
# For Ubuntu-based distros
28-
sudo apt install -y build-essential pkg-config jq file
28+
sudo apt install -y build-essential pkg-config jq file gdal-bin
2929
```
3030

3131
Install [Just](https://github.com/casey/just#readme) (improved makefile processor). Note that some Linux and Homebrew

0 commit comments

Comments
 (0)