From fc1e5887fd89ec49efa8358e492b6d84caa041ae Mon Sep 17 00:00:00 2001 From: Hans Johnson Date: Wed, 27 Jul 2016 08:11:38 -0500 Subject: [PATCH] COMP: Let travis CI builds submit to the dashboard The my.cdash.org build reporting site can accept build reports from the travis build environment. These reports can assist with identifying problems with a given pull request. --- .travis.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6795a2e..97b8026 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,4 +15,9 @@ os: script: - cmake -DCMAKE_INSTALL_PREFIX=~/.local -DLAPACKE=ON -DCBLAS=ON . - - make install -j2 && ctest -j2 --output-on-failure --timeout 100 + - ctest -D ExperimentalStart + - ctest -D ExperimentalConfigure + - ctest -D ExperimentalBuild -j2 + - ctest -D ExperimentalTest --schedule-random -j2 --output-on-failure --timeout 100 + - ctest -D ExperimentalSubmit + - make install -j2 -- 2.7.4