Skip to content

Commit

Permalink
[CI] Update runner labels to avoid running on GPUs.
Browse files Browse the repository at this point in the history
Due to the automatically assigned github runner labels, the GPU runner
will pick up CPU builds, so their labels had to be made more specific.
  • Loading branch information
hageboeck committed Oct 2, 2024
1 parent df66e78 commit d5f48ef
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/root-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -358,46 +358,46 @@ jobs:
include:
- image: fedora39
overrides: ["LLVM_ENABLE_ASSERTIONS=On", "CMAKE_CXX_STANDARD=20"]
runs-on: [self-hosted, linux, x64]
runs-on: [self-hosted, root-ci, linux, x64]
- image: alma8
overrides: ["LLVM_ENABLE_ASSERTIONS=On"]
runs-on: [self-hosted, linux, x64]
runs-on: [self-hosted, root-ci, linux, x64]
- image: alma9
overrides: ["LLVM_ENABLE_ASSERTIONS=On", "CMAKE_BUILD_TYPE=Debug"]
runs-on: [self-hosted, linux, x64]
runs-on: [self-hosted, root-ci, linux, x64]
- image: ubuntu20
overrides: ["LLVM_ENABLE_ASSERTIONS=On"]
runs-on: [self-hosted, linux, x64]
runs-on: [self-hosted, root-ci, linux, x64]
- image: ubuntu22
overrides: ["imt=Off", "LLVM_ENABLE_ASSERTIONS=On", "CMAKE_BUILD_TYPE=Debug"]
runs-on: [self-hosted, linux, x64]
runs-on: [self-hosted, root-ci, linux, x64]
- image: ubuntu2404
overrides: ["LLVM_ENABLE_ASSERTIONS=On", "CMAKE_BUILD_TYPE=Debug"]
runs-on: [self-hosted, linux, x64]
runs-on: [self-hosted, root-ci, linux, x64]
- image: debian125
overrides: ["LLVM_ENABLE_ASSERTIONS=On", "CMAKE_CXX_STANDARD=20"]
runs-on: [self-hosted, linux, x64]
runs-on: [self-hosted, root-ci, linux, x64]
# Special builds
- image: alma9
is_special: true
property: modules_off
overrides: ["runtime_cxxmodules=Off"]
runs-on: [self-hosted, linux, x64]
runs-on: [self-hosted, root-ci, linux, x64]
- image: alma9
is_special: true
property: march_native
overrides: ["CMAKE_BUILD_TYPE=RelWithDebInfo", "CMAKE_CXX_FLAGS=-march=native", "CMAKE_C_FLAGS=-march=native", "fortran=OFF"]
runs-on: [self-hosted, linux, x64]
runs-on: [self-hosted, root-ci, linux, x64]
- image: alma9
is_special: true
property: arm64
overrides: ["CMAKE_BUILD_TYPE=RelWithDebInfo"]
runs-on: [self-hosted, linux, ARM64]
runs-on: [self-hosted, root-ci, linux, ARM64]
- image: alma9-clang
is_special: true
property: clang
overrides: ["LLVM_ENABLE_ASSERTIONS=On", "CMAKE_C_COMPILER=clang", "CMAKE_CXX_COMPILER=clang++"]
runs-on: [self-hosted, linux, x64]
runs-on: [self-hosted, root-ci, linux, x64]

runs-on: ${{ matrix.runs-on }}

Expand Down

0 comments on commit d5f48ef

Please sign in to comment.