Skip to content

Commit d2abd2a

Browse files
committed
fix
1 parent c363e98 commit d2abd2a

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

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

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,7 @@ jobs:
1515
build-and-release:
1616
strategy:
1717
matrix:
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"
18+
pg_version: ["13.15", "14.12", "15.7", "16.3"]
3119
os: [macos-15-large, macos-15-xlarge]
3220
runs-on: ${{ matrix.os }}
3321
defaults:
@@ -40,7 +28,7 @@ jobs:
4028
- name: Build PostgreSQL, PostGIS, and Dependencies
4129
id: build_postgres
4230
run: |
43-
./build-postgres-darwin.sh -v ${{ matrix.pg_version }} -g ${{ matrix.postgis_version }} -r ${{ matrix.pgrouting_version }}
31+
./build-postgres-darwin.sh -v ${{ matrix.pg_version }} -g 3.4.2 -r 3.6.2
4432
if [ "${{ matrix.os }}" == "macos-15-xlarge" ]; then
4533
echo "ARCH=arm64" >> $GITHUB_OUTPUT
4634
echo "FILENAME=postgresql-${{ matrix.pg_version }}-darwin-arm64.txz" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)