From 70fee242ed773eb55da70c7ac3302f9702ed27ed Mon Sep 17 00:00:00 2001 From: Pieter Ghysels Date: Tue, 26 Oct 2021 18:41:28 -0700 Subject: [PATCH] In CI, do not build 'tests', already part of make. Build examples! --- .github/workflows/test.yml | 2 +- .gitlab-ci.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d06ce8a3..0c1f3b2c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -89,7 +89,7 @@ jobs: -DTPL_SCALAPACK_LIBRARIES="$SCALAPACK_LIB" make make install - make tests + make examples printf "${BLUE} PG; Done installing STRUMPACK from source\n" - name: Test diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b499d324..303f2a65 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -24,7 +24,7 @@ build: - pwd - rm -rf build && mkdir -p build && cd build - cmake .. -DBUILD_SHARED_LIBS=OFF -DCMAKE_C_COMPILER=mpicc -DCMAKE_CXX_COMPILER=mpic++ -DCMAKE_Fortran_COMPILER=mpif90 -DCMAKE_INSTALL_PREFIX=. -DCMAKE_BUILD_TYPE=Debug -DCMAKE_VERBOSE_MAKEFILE:BOOL=OFF -DTPL_BLAS_LIBRARIES="$BLAS_LIB" -DTPL_LAPACK_LIBRARIES="$LAPACK_LIB" -DTPL_SCALAPACK_LIBRARIES="$SCALAPACK_LIB" - - make && make install && make tests + - make && make install && make examples - cd ../ - printf "${BLUE} PG; Done installing STRUMPACK from source\n"