File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -96,14 +96,26 @@ jobs:
96
96
-D LAPACKE_WITH_TMG:BOOL=ON
97
97
-D BUILD_SHARED_LIBS:BOOL=ON
98
98
99
- - name : CTest
99
+ - name : Build
100
100
working-directory : ${{github.workspace}}/build
101
101
# Execute tests defined by the CMake configuration.
102
102
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
103
103
run : |
104
104
ctest -D ExperimentalStart
105
105
ctest -D ExperimentalConfigure
106
106
ctest -D ExperimentalBuild -j2
107
+
108
+ - name : Test with OpenMP
109
+ working-directory : ${{github.workspace}}/build
110
+ if : ${{ contains( matrix.fflags, 'openmp' ) }}
111
+ run : |
112
+ ctest -D ExperimentalTest --schedule-random -j1 --output-on-failure --timeout 100
113
+ ctest -D ExperimentalSubmit
114
+
115
+ - name : Test
116
+ working-directory : ${{github.workspace}}/build
117
+ if : ${{ !contains( matrix.fflags, 'openmp' ) }}
118
+ run : |
107
119
ctest -D ExperimentalTest --schedule-random -j2 --output-on-failure --timeout 100
108
120
ctest -D ExperimentalSubmit
109
121
You can’t perform that action at this time.
0 commit comments