Skip to content

Commit cdc523d

Browse files
committed
Github actions: Remove build with PostgreSQL 9.5
PostgreSQL 9.5 has been marked as unsupported for a while, both by the PostgreSQL itself as by us. This removes the build on Github action which is failing now.
1 parent 9491502 commit cdc523d

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,15 @@ jobs:
3939
env:
4040
PGHOST: /tmp
4141

42-
43-
ubuntu18-pg95-gcc7-jit:
42+
ubuntu18-pg96-gcc7-jit:
4443
runs-on: ubuntu-18.04
4544

4645
env:
4746
CC: gcc-7
4847
CXX: g++-7
4948
LUA_VERSION: 5.3
5049
LUAJIT_OPTION: ON
51-
POSTGRESQL_VERSION: 9.5
50+
POSTGRESQL_VERSION: 9.6
5251
POSTGIS_VERSION: 2.4
5352
BUILD_TYPE: Release
5453

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ if (NOT WIN32 AND NOT APPLE)
6666
set(PostgreSQL_TYPE_INCLUDE_DIR /usr/include)
6767
endif()
6868

69-
set(MINIMUM_POSTGRESQL_SERVER_VERSION "9.5")
70-
set(MINIMUM_POSTGRESQL_SERVER_VERSION_NUM "90500")
69+
set(MINIMUM_POSTGRESQL_SERVER_VERSION "9.6")
70+
set(MINIMUM_POSTGRESQL_SERVER_VERSION_NUM "90600")
7171

72-
set(PostgreSQL_ADDITIONAL_VERSIONS "14" "13" "12" "11" "10" "9.6" "9.5")
72+
set(PostgreSQL_ADDITIONAL_VERSIONS "15" "14" "13" "12" "11" "10" "9.6")
7373

7474
#############################################################
7575
# Version

0 commit comments

Comments
 (0)