Skip to content

Commit

Permalink
Remove dependency to pg_stat_statements in the CI
Browse files Browse the repository at this point in the history
Since 8e296b6, 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.
  • Loading branch information
michaelpq committed Aug 20, 2024
1 parent 63cf84e commit 48a71d4
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 48a71d4

Please sign in to comment.