From 48a71d4e5dffbc223a0d44b1dc0fabcc3f199cc0 Mon Sep 17 00:00:00 2001 From: Michael Paquier Date: Tue, 20 Aug 2024 10:10:43 +0900 Subject: [PATCH] Remove dependency to pg_stat_statements in the CI Since 8e296b66e34f, the tests can run without pg_stat_statements, so let's make things lighter as well in the CI. While on it, remove the dependency to file_fdw in shared_preload_libraries: this is not required as the library does not need to be loaded for the sake of the regression tests. --- .github/workflows/test.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1db76f8..9639aa0 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -62,13 +62,11 @@ jobs: ./configure --prefix=$HOME/pgsql --enable-cassert --enable-debug make -j 2 - make -C contrib/pg_stat_statements make -C contrib/file_fdw make -C contrib/btree_gist make -C contrib/btree_gin sudo make install - sudo make -C contrib/pg_stat_statements install sudo make -C contrib/file_fdw install sudo make -C contrib/btree_gist install sudo make -C contrib/btree_gin install @@ -84,7 +82,7 @@ jobs: - name: Start PostgreSQL Server run: | initdb -D regression_data --no-locale -E UTF8 -A trust - echo "shared_preload_libraries = 'pg_hint_plan,pg_stat_statements,file_fdw'" >> regression_data/postgresql.conf + echo "shared_preload_libraries = 'pg_hint_plan'" >> regression_data/postgresql.conf pg_ctl start -D regression_data -o "-p ${PGPORT}" - name: Make installcheck