1
0
mirror of https://github.com/timescale/timescaledb.git synced 2025-05-25 15:50:27 +08:00

Reduce test group size in sanitizer runs

When the sanitizer is active, the tests require a lot of memory. If they
are run in large parallel groups, out-of-memory situations can occur.
This patch reduces the size of parallel groups to 5 when the sanitizer
is active.
This commit is contained in:
Jan Nidzwetzki 2022-12-08 15:56:29 +01:00 committed by Jan Nidzwetzki
parent a01e483bf3
commit d92739099b

@ -119,7 +119,7 @@ jobs:
- name: Build TimescaleDB
run: |
./bootstrap -DCMAKE_BUILD_TYPE=Debug -DPG_SOURCE_DIR=~/$PG_SRC_DIR -DPG_PATH=~/$PG_INSTALL_DIR -DCODECOVERAGE=OFF -DREQUIRE_ALL_TESTS=ON
./bootstrap -DCMAKE_BUILD_TYPE=Debug -DPG_SOURCE_DIR=~/$PG_SRC_DIR -DPG_PATH=~/$PG_INSTALL_DIR -DCODECOVERAGE=OFF -DREQUIRE_ALL_TESTS=ON -DTEST_GROUP_SIZE=5
make -j $MAKE_JOBS -C build
make -C build install