From eab3c083d408f6cd535ccb5317a8dc46c7622ac1 Mon Sep 17 00:00:00 2001 From: William F Godoy Date: Mon, 19 Feb 2024 19:04:18 -0500 Subject: [PATCH] Update cores used in test GitHub Actions now provides 4 cores in free runners --- .../github-actions/ci/run_step.sh | 16 ++-------------- 1 file changed, 2 insertions(+), 14 deletions(-) diff --git a/tests/test_automation/github-actions/ci/run_step.sh b/tests/test_automation/github-actions/ci/run_step.sh index 34f91480fc..e7f7cc4a3e 100755 --- a/tests/test_automation/github-actions/ci/run_step.sh +++ b/tests/test_automation/github-actions/ci/run_step.sh @@ -376,20 +376,8 @@ case "$1" in fi # Add ctest concurrent parallel jobs - # Default for Linux GitHub Action runners - CTEST_JOBS="2" - # Default for macOS GitHub Action runners - if [[ "${GH_OS}" =~ (macOS) ]] - then - CTEST_JOBS="3" - fi - - if [[ "$HOST_NAME" =~ (sulfur) || "$HOST_NAME" =~ (nitrogen) ]] - then - CTEST_JOBS="32" - fi - - ctest --output-on-failure $TEST_LABEL -j $CTEST_JOBS + # 4 for Linux and macOS GitHub Actions free runners + ctest --output-on-failure $TEST_LABEL -j 4 ;; # Generate coverage reports