Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ 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
outputs:
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:
Expand Down
2 changes: 1 addition & 1 deletion scripts/github-actions/linux-build_and_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 ~~~~~~~~"
Expand Down
Loading