File tree Expand file tree Collapse file tree 1 file changed +13
-3
lines changed
Expand file tree Collapse file tree 1 file changed +13
-3
lines changed Original file line number Diff line number Diff 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 :
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
You can’t perform that action at this time.
0 commit comments