Skip to content

Commit d883244

Browse files
authored
[OMON-727] Add Alma9 check on self-hosted runner (#334)
1 parent 2b4b5a7 commit d883244

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.github/workflows/build.yml

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,14 +41,24 @@ jobs:
4141
run: cd build && make -j
4242
- name: Test
4343
run: cd build && ctest --output-on-failure
44+
alma9:
45+
runs-on: [self-hosted, alma9]
46+
steps:
47+
- uses: actions/checkout@v2
48+
- name: CMake
49+
run: mkdir build && cd build && source /opt/rh/gcc-toolset-12/enable && cmake ..
50+
- name: Build
51+
run: cd build && make -j 2
52+
- name: Test
53+
run: cd build && ctest --output-on-failure
4454
cs8:
4555
runs-on: [self-hosted, cs8]
4656
steps:
4757
- uses: actions/checkout@v2
4858
- name: CMake
49-
run: mkdir build && cd build && source /opt/rh/gcc-toolset-10/enable && cmake ..
59+
run: mkdir build && cd build && source /opt/rh/gcc-toolset-12/enable && cmake ..
5060
- name: Build
51-
run: cd build && make -j
61+
run: cd build && make -j 2
5262
- name: Test
5363
run: cd build && ctest --output-on-failure
5464
cc7:
@@ -58,6 +68,6 @@ jobs:
5868
- name: CMake
5969
run: mkdir build && cd build && source /opt/rh/devtoolset-9/enable && cmake3 ..
6070
- name: Build
61-
run: cd build && make -j
71+
run: cd build && make -j 2
6272
- name: Test
6373
run: cd build && ctest3 --output-on-failure

0 commit comments

Comments
 (0)