File tree 4 files changed +5
-72
lines changed
4 files changed +5
-72
lines changed Original file line number Diff line number Diff line change @@ -79,17 +79,14 @@ jobs:
79
79
-DMPIEXEC_PREFLAGS=${{env.MPIEXEC_PREFLAGS}}
80
80
81
81
- 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
87
84
88
85
- name : Test
86
+ # CMake<3.20 does not have -B option
89
87
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
93
90
94
91
- name : Install (CMake < 3.15)
95
92
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)
2
2
3
3
project (SCALAPACK VERSION 2.2.2 LANGUAGES C Fortran)
4
4
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
-
12
5
# Add the CMake directory for custon CMake modules
13
6
set (CMAKE_MODULE_PATH "${SCALAPACK_SOURCE_DIR} /CMAKE" ${CMAKE_MODULE_PATH} )
14
7
@@ -87,8 +80,6 @@ endmacro()
87
80
# Testing
88
81
SET (DART_TESTING_TIMEOUT 600)
89
82
90
- enable_testing ()
91
- include (CTest)
92
83
enable_testing ()
93
84
# --------------------------------------------------
94
85
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments