From 6ef7fccb5cd2ec89bb98692ea9c3507f9ac58c84 Mon Sep 17 00:00:00 2001 From: Andrew Kane Date: Sun, 27 Jul 2025 19:50:46 -0700 Subject: [PATCH] Added Postgres 19 to CI [skip ci] --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a379e36..f39786d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,6 +8,8 @@ jobs: fail-fast: false matrix: include: + - postgres: 19 + os: ubuntu-24.04 - postgres: 18 os: ubuntu-24.04 - postgres: 17 @@ -28,7 +30,7 @@ jobs: dev-files: true - run: make env: - PG_CFLAGS: ${{ matrix.postgres == 18 && '-Wno-missing-field-initializers' || '' }} -DUSE_ASSERT_CHECKING -Wall -Wextra -Werror -Wno-unused-parameter -Wno-sign-compare + PG_CFLAGS: ${{ matrix.postgres >= 18 && '-Wno-missing-field-initializers' || '' }} -DUSE_ASSERT_CHECKING -Wall -Wextra -Werror -Wno-unused-parameter -Wno-sign-compare - run: | export PG_CONFIG=`which pg_config` sudo --preserve-env=PG_CONFIG make install