File tree Expand file tree Collapse file tree 1 file changed +3
-11
lines changed Expand file tree Collapse file tree 1 file changed +3
-11
lines changed Original file line number Diff line number Diff line change @@ -103,27 +103,19 @@ jobs:
103
103
-D BUILD_SHARED_LIBS:BOOL=ON
104
104
105
105
- name : Build
106
- working-directory : ${{github.workspace}}/build
107
106
# Execute tests defined by the CMake configuration.
108
107
# See https://cmake.org/cmake/help/latest/manual/ctest.1.html for more detail
109
- run : |
110
- ctest -D ExperimentalStart
111
- ctest -D ExperimentalConfigure
112
- ctest -D ExperimentalBuild --verbose
108
+ run : cmake --build build --config ${{env.BUILD_TYPE}}
113
109
114
110
- name : Test with OpenMP
115
111
working-directory : ${{github.workspace}}/build
116
112
if : ${{ contains( matrix.fflags, 'openmp' ) && (matrix.os != 'windows-latest') }}
117
- run : |
118
- ctest -D ExperimentalTest --schedule-random -j1 --output-on-failure --timeout 100
119
- ctest -D ExperimentalSubmit
113
+ run : ctest -C ${{env.BUILD_TYPE}} --schedule-random -j1 --output-on-failure --timeout 100
120
114
121
115
- name : Test
122
116
working-directory : ${{github.workspace}}/build
123
117
if : ${{ !contains( matrix.fflags, 'openmp' ) && (matrix.os != 'windows-latest') }}
124
- run : |
125
- ctest -D ExperimentalTest --schedule-random -j2 --output-on-failure --timeout 100
126
- ctest -D ExperimentalSubmit
118
+ run : ctest -C ${{env.BUILD_TYPE}} --schedule-random -j2 --output-on-failure --timeout 100
127
119
128
120
- name : Install
129
121
run : cmake --build build --target install -j2
You can’t perform that action at this time.
0 commit comments