Skip to content

Commit 0c16add

Browse files
asheshvclaude
andcommitted
fix: Use PostGIS 35 for EPAS 18 in CI workflow
EPAS 18 ships with edb-as18-postgis35 instead of postgis34. Add a postgisver matrix variable to support mixed versions. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 15b3259 commit 0c16add

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/run-python-tests-epas.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,10 @@ jobs:
3333
matrix:
3434
os: [ubuntu-22.04, windows-latest]
3535
pgver: [14, 15, 16, 17, 18]
36+
postgisver: [34]
37+
include:
38+
- pgver: 18
39+
postgisver: 35
3640

3741
runs-on: ${{ matrix.os }}
3842

@@ -53,7 +57,7 @@ jobs:
5357
if: ${{ matrix.os == 'ubuntu-22.04' }}
5458
run: |
5559
sudo apt update
56-
sudo apt install -y libpq-dev libffi-dev libssl-dev libkrb5-dev zlib1g-dev edb-as${{ matrix.pgver }}-server edb-as${{ matrix.pgver }}-server-pldebugger edb-as${{ matrix.pgver }}-postgis34
60+
sudo apt install -y libpq-dev libffi-dev libssl-dev libkrb5-dev zlib1g-dev edb-as${{ matrix.pgver }}-server edb-as${{ matrix.pgver }}-server-pldebugger edb-as${{ matrix.pgver }}-postgis${{ matrix.postgisver }}
5761
5862
- name: Install pgagent on Linux
5963
if: ${{ matrix.os == 'ubuntu-22.04' && matrix.pgver <= 16 }}

0 commit comments

Comments
 (0)