File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -159,6 +159,7 @@ jobs:
159159 for ext in ${{ matrix.pg_extensions }}; do
160160 make -C contrib/${ext} install
161161 done
162+ make install-tests
162163
163164 - name : Save PostgreSQL ${{ matrix.pg }} ${{ matrix.build_type }} Cache
164165 if : matrix.snapshot != 'snapshot' && steps.restore-postgresql-cache.outputs.cache-hit != 'true'
@@ -186,6 +187,7 @@ jobs:
186187 if : github.event_name != 'pull_request' && runner.os == 'Linux' && matrix.build_type == 'Debug'
187188 run : |
188189 BUILD_DIR=nossl ./bootstrap -DCMAKE_BUILD_TYPE=Debug \
190+ -DPG_SOURCE_DIR=$(readlink -f pg) \
189191 ${{ matrix.tsdb_build_args }} -DCODECOVERAGE=${{ matrix.coverage }} -DUSE_OPENSSL=OFF \
190192 -DTEST_PG_LOG_DIRECTORY="$(readlink -f .)"
191193 make -j $(getconf _NPROCESSORS_ONLN) -C nossl
@@ -198,6 +200,7 @@ jobs:
198200 gcc -march=native -E -v - </dev/null 2>&1 | grep cc1
199201
200202 ./bootstrap -DCMAKE_BUILD_TYPE="${{ matrix.build_type }}" \
203+ -DPG_SOURCE_DIR=$(readlink -f pg) \
201204 ${{ matrix.tsdb_build_args }} -DCODECOVERAGE=${{ matrix.coverage }} \
202205 -DREQUIRE_ALL_TESTS=${{ matrix.installcheck && 'ON' || 'OFF' }} \
203206 -DTEST_PG_LOG_DIRECTORY="$(readlink -f .)"
You can’t perform that action at this time.
0 commit comments