From: Timo Heister Date: Mon, 8 Apr 2019 14:17:43 +0000 (-0600) Subject: [CI]: run quicktests X-Git-Tag: v9.1.0-rc1~212^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9c036a426574082c326a181300d71f17439cfd02;p=dealii.git [CI]: run quicktests also execute the quicktests as part of CI --- diff --git a/Jenkinsfile b/Jenkinsfile index 48064a8afb..4f94fc4410 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -131,6 +131,7 @@ pipeline -D DEAL_II_UNITY_BUILD=ON \ $WORKSPACE/ time ninja -j $NP + time ninja test # quicktests time ninja setup_tests time ctest --output-on-failure -DDESCRIPTION="CI-$JOB_NAME" -j $NP --no-compress-output -T test ''' @@ -182,6 +183,7 @@ pipeline -D DEAL_II_UNITY_BUILD=OFF \ $WORKSPACE/ time ninja -j $NP + time ninja test # quicktests time ninja setup_tests time ctest -R "all-headers|multigrid/transfer" --output-on-failure -DDESCRIPTION="CI-$JOB_NAME" -j $NP --no-compress-output -T test ''' diff --git a/contrib/ci/Jenkinsfile.osx b/contrib/ci/Jenkinsfile.osx index c214ca0a8e..8538cbdcdd 100644 --- a/contrib/ci/Jenkinsfile.osx +++ b/contrib/ci/Jenkinsfile.osx @@ -94,6 +94,7 @@ pipeline -D DEAL_II_CXX_FLAGS='-Werror' \ -D CMAKE_BUILD_TYPE=Debug \ $WORKSPACE/ && make -j 4 + make test # quicktests ''' } }