Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
sharkAndshark committed Jan 7, 2025
1 parent cdfe764 commit b285408
Show file tree
Hide file tree
Showing 78 changed files with 16,346 additions and 4,848 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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 }}"
Expand Down Expand Up @@ -455,6 +460,8 @@ jobs:
uses: nyurik/action-setup-nginx@v1.1
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
Expand Down
2 changes: 1 addition & 1 deletion docs/src/development.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Install a few required libs and tools:

```bash, ignore
# For Ubuntu-based distros
sudo apt install -y build-essential pkg-config jq file
sudo apt install -y build-essential pkg-config jq file gdal-bin
```

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

0 comments on commit b285408

Please sign in to comment.