File tree Expand file tree Collapse file tree 4 files changed +5
-72
lines changed Expand file tree Collapse file tree 4 files changed +5
-72
lines changed Original file line number Diff line number Diff line change @@ -79,17 +79,14 @@ jobs:
7979 -DMPIEXEC_PREFLAGS=${{env.MPIEXEC_PREFLAGS}}
8080
8181 - name : Build
82- working-directory : ${{github.workspace}}/build
83- run : |
84- ctest -D ExperimentalStart
85- ctest -D ExperimentalConfigure
86- ctest -D ExperimentalBuild
82+ run : >
83+ cmake --build build
8784
8885 - name : Test
86+ # CMake<3.20 does not have -B option
8987 working-directory : ${{github.workspace}}/build
90- run : |
91- ctest -D ExperimentalTest --schedule-random --output-on-failure --timeout 180
92- ctest -D ExperimentalSubmit
88+ run : >
89+ ctest --output-on-failure
9390
9491 - name : Install (CMake < 3.15)
9592 run : DESTDIR=scalapack_install cmake --build build --target install
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -2,13 +2,6 @@ cmake_minimum_required(VERSION 3.9...4.0)
22
33project (SCALAPACK VERSION 2.2.2 LANGUAGES C Fortran)
44
5- # Configure the warning and code coverage suppression file
6- configure_file (
7- "${SCALAPACK_SOURCE_DIR} /CMAKE/CTestCustom.cmake.in"
8- "${SCALAPACK_BINARY_DIR} /CTestCustom.cmake"
9- COPYONLY
10- )
11-
125# Add the CMake directory for custon CMake modules
136set (CMAKE_MODULE_PATH "${SCALAPACK_SOURCE_DIR} /CMAKE" ${CMAKE_MODULE_PATH} )
147
@@ -87,8 +80,6 @@ endmacro()
8780# Testing
8881SET (DART_TESTING_TIMEOUT 600)
8982
90- enable_testing ()
91- include (CTest)
9283enable_testing ()
9384# --------------------------------------------------
9485
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments