Skip to content

Commit

Permalink
[OMON-727] Add Alma9 check on self-hosted runner (#334)
Browse files Browse the repository at this point in the history
  • Loading branch information
awegrzyn authored Nov 3, 2023
1 parent 2b4b5a7 commit d883244
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,24 @@ jobs:
run: cd build && make -j
- name: Test
run: cd build && ctest --output-on-failure
alma9:
runs-on: [self-hosted, alma9]
steps:
- uses: actions/checkout@v2
- name: CMake
run: mkdir build && cd build && source /opt/rh/gcc-toolset-12/enable && cmake ..
- name: Build
run: cd build && make -j 2
- name: Test
run: cd build && ctest --output-on-failure
cs8:
runs-on: [self-hosted, cs8]
steps:
- uses: actions/checkout@v2
- name: CMake
run: mkdir build && cd build && source /opt/rh/gcc-toolset-10/enable && cmake ..
run: mkdir build && cd build && source /opt/rh/gcc-toolset-12/enable && cmake ..
- name: Build
run: cd build && make -j
run: cd build && make -j 2
- name: Test
run: cd build && ctest --output-on-failure
cc7:
Expand All @@ -58,6 +68,6 @@ jobs:
- name: CMake
run: mkdir build && cd build && source /opt/rh/devtoolset-9/enable && cmake3 ..
- name: Build
run: cd build && make -j
run: cd build && make -j 2
- name: Test
run: cd build && ctest3 --output-on-failure

0 comments on commit d883244

Please sign in to comment.