From 6b583ba6f6697d7eafb254ef540b7583e128990e Mon Sep 17 00:00:00 2001 From: Jacob Champion Date: Tue, 2 Sep 2025 15:37:53 -0700 Subject: [PATCH v6 3/7] ci: Add MTEST_SUITES for optional test tailoring Should make it easier to control the test cycle time for Cirrus. Add the desired suites (remembering `--suite setup`!) to the top-level envvar. --- .cirrus.tasks.yml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.cirrus.tasks.yml b/.cirrus.tasks.yml index a83acb39e97..a2c3febc30c 100644 --- a/.cirrus.tasks.yml +++ b/.cirrus.tasks.yml @@ -28,6 +28,7 @@ env: # errors/warnings in one place. MBUILD_TARGET: all testprep MTEST_ARGS: --print-errorlogs --no-rebuild -C build + MTEST_SUITES: # --suite setup --suite ssl --suite ... PGCTLTIMEOUT: 120 # avoids spurious failures during parallel tests TEMP_CONFIG: ${CIRRUS_WORKING_DIR}/src/tools/ci/pg_ci_base.conf PG_TEST_EXTRA: kerberos ldap ssl libpq_encryption load_balance oauth @@ -251,7 +252,7 @@ task: su postgres <<-EOF set -e ulimit -c unlimited - meson test $MTEST_ARGS --num-processes ${TEST_JOBS} + meson test $MTEST_ARGS --num-processes ${TEST_JOBS} ${MTEST_SUITES} EOF # test runningcheck, freebsd chosen because it's currently fast enough @@ -396,7 +397,7 @@ task: # Otherwise tests will fail on OpenBSD, due to inability to start enough # processes. ulimit -p 256 - meson test $MTEST_ARGS --num-processes ${TEST_JOBS} + meson test $MTEST_ARGS --num-processes ${TEST_JOBS} ${MTEST_SUITES} EOF on_failure: @@ -614,7 +615,7 @@ task: su postgres <<-EOF set -e ulimit -c unlimited - meson test $MTEST_ARGS --num-processes ${TEST_JOBS} + meson test $MTEST_ARGS --num-processes ${TEST_JOBS} ${MTEST_SUITES} EOF # so that we don't upload 64bit logs if 32bit fails rm -rf build/ @@ -627,7 +628,7 @@ task: su postgres <<-EOF set -e ulimit -c unlimited - PYTHONCOERCECLOCALE=0 LANG=C meson test $MTEST_ARGS -C build-32 --num-processes ${TEST_JOBS} + PYTHONCOERCECLOCALE=0 LANG=C meson test $MTEST_ARGS -C build-32 --num-processes ${TEST_JOBS} ${MTEST_SUITES} EOF on_failure: @@ -751,7 +752,7 @@ task: test_world_script: | ulimit -c unlimited # default is 0 ulimit -n 1024 # default is 256, pretty low - meson test $MTEST_ARGS --num-processes ${TEST_JOBS} + meson test $MTEST_ARGS --num-processes ${TEST_JOBS} ${MTEST_SUITES} on_failure: <<: *on_failure_meson @@ -834,7 +835,7 @@ task: check_world_script: | vcvarsall x64 - meson test %MTEST_ARGS% --num-processes %TEST_JOBS% + meson test %MTEST_ARGS% --num-processes %TEST_JOBS% %MTEST_SUITES% on_failure: <<: *on_failure_meson @@ -895,7 +896,7 @@ task: upload_caches: ccache test_world_script: | - %BASH% -c "meson test %MTEST_ARGS% --num-processes %TEST_JOBS%" + %BASH% -c "meson test %MTEST_ARGS% --num-processes %TEST_JOBS% %MTEST_SUITES%" on_failure: <<: *on_failure_meson -- 2.52.0