Skip to content

Commit 23a60f5

Browse files
committed
Drop CDash
Signed-off-by: Cristian Le <git@lecris.dev>
1 parent b8c4da1 commit 23a60f5

File tree

4 files changed

+5
-72
lines changed

4 files changed

+5
-72
lines changed

.github/workflows/cmake.yml

+5-8
Original file line numberDiff line numberDiff 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

CMAKE/CTestCustom.cmake.in

-42
This file was deleted.

CMakeLists.txt

-9
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,6 @@ cmake_minimum_required(VERSION 3.9...4.0)
22

33
project(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
136
set(CMAKE_MODULE_PATH "${SCALAPACK_SOURCE_DIR}/CMAKE" ${CMAKE_MODULE_PATH})
147

@@ -87,8 +80,6 @@ endmacro()
8780
# Testing
8881
SET(DART_TESTING_TIMEOUT 600)
8982

90-
enable_testing()
91-
include(CTest)
9283
enable_testing()
9384
# --------------------------------------------------
9485

CTestConfig.cmake

-13
This file was deleted.

0 commit comments

Comments
 (0)