We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b8b68b commit 6ef7fccCopy full SHA for 6ef7fcc
1 file changed
.github/workflows/build.yml
@@ -8,6 +8,8 @@ jobs:
8
fail-fast: false
9
matrix:
10
include:
11
+ - postgres: 19
12
+ os: ubuntu-24.04
13
- postgres: 18
14
os: ubuntu-24.04
15
- postgres: 17
@@ -28,7 +30,7 @@ jobs:
28
30
dev-files: true
29
31
- run: make
32
env:
- PG_CFLAGS: ${{ matrix.postgres == 18 && '-Wno-missing-field-initializers' || '' }} -DUSE_ASSERT_CHECKING -Wall -Wextra -Werror -Wno-unused-parameter -Wno-sign-compare
33
+ PG_CFLAGS: ${{ matrix.postgres >= 18 && '-Wno-missing-field-initializers' || '' }} -DUSE_ASSERT_CHECKING -Wall -Wextra -Werror -Wno-unused-parameter -Wno-sign-compare
34
- run: |
35
export PG_CONFIG=`which pg_config`
36
sudo --preserve-env=PG_CONFIG make install
0 commit comments