From dc464bb6017ed189073685ea9548ecf229c3721d Mon Sep 17 00:00:00 2001 From: David Beckingsale Date: Thu, 14 Aug 2025 10:05:01 -0700 Subject: [PATCH 1/2] Use on-demand RADIUSS CPU runners --- .github/workflows/ci-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index 9b898e434c..e39500cbe8 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -18,7 +18,7 @@ env: jobs: # Hacky solution to reference env variables outside of `run` steps https://stackoverflow.com/a/74217028 set_image_vars: - runs-on: ubuntu-latest + runs-on: radiuss-cpu-runners steps: - name: Do Nothing run: echo @@ -26,7 +26,7 @@ jobs: clang_docker_image: ${{ env.CLANG_DOCKER_IMAGE }} gcc_docker_image: ${{ env.GCC_DOCKER_IMAGE }} build_and_test: - runs-on: ubuntu-22.04 + runs-on: radiuss-cpu-runners needs: - set_image_vars strategy: From 953373efca2364ca8eb4879ba10ed69799607098 Mon Sep 17 00:00:00 2001 From: David Beckingsale Date: Fri, 10 Oct 2025 14:56:58 -0700 Subject: [PATCH 2/2] Quiet down build --- scripts/github-actions/linux-build_and_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/github-actions/linux-build_and_test.sh b/scripts/github-actions/linux-build_and_test.sh index 808c61c50d..175c7b8006 100755 --- a/scripts/github-actions/linux-build_and_test.sh +++ b/scripts/github-actions/linux-build_and_test.sh @@ -40,7 +40,7 @@ if [[ "$DO_BUILD" == "yes" ]] ; then if [[ ${CMAKE_EXTRA_FLAGS} == *COVERAGE* ]] ; then or_die make -j $NUM_BUILD_PROCS else - or_die make -j $NUM_BUILD_PROCS VERBOSE=1 + or_die make -j $NUM_BUILD_PROCS fi echo "~~~~~~ RUNNING TESTS ~~~~~~~~"