Skip to content

Commit c363e98

Browse files
committed
use newer postgis version to align with AWS
1 parent 35ae1f3 commit c363e98

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

.github/workflows/build-and-release-macos.yml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,19 @@ jobs:
1515
build-and-release:
1616
strategy:
1717
matrix:
18-
# pg_version: ["13.14", "14.11", "15.6", "16.2"]
19-
pg_version: ["16.2"]
18+
include:
19+
- pg_version: "13.15"
20+
postgis_version: "3.4.2"
21+
pgrouting_version: "3.6.2"
22+
- pg_version: "14.12"
23+
postgis_version: "3.4.2"
24+
pgrouting_version: "3.6.2"
25+
- pg_version: "15.7"
26+
postgis_version: "3.4.2"
27+
pgrouting_version: "3.6.2"
28+
- pg_version: "16.3"
29+
postgis_version: "3.4.2"
30+
pgrouting_version: "3.6.2"
2031
os: [macos-15-large, macos-15-xlarge]
2132
runs-on: ${{ matrix.os }}
2233
defaults:
@@ -29,7 +40,7 @@ jobs:
2940
- name: Build PostgreSQL, PostGIS, and Dependencies
3041
id: build_postgres
3142
run: |
32-
./build-postgres-darwin.sh -v ${{ matrix.pg_version }} -g 3.1.4 -r 3.2.0
43+
./build-postgres-darwin.sh -v ${{ matrix.pg_version }} -g ${{ matrix.postgis_version }} -r ${{ matrix.pgrouting_version }}
3344
if [ "${{ matrix.os }}" == "macos-15-xlarge" ]; then
3445
echo "ARCH=arm64" >> $GITHUB_OUTPUT
3546
echo "FILENAME=postgresql-${{ matrix.pg_version }}-darwin-arm64.txz" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)