COMP: Let travis CI builds submit to the dashboard
authorHans Johnson <hans-johnson@uiowa.edu>
Wed, 27 Jul 2016 13:11:38 +0000 (08:11 -0500)
committerHans Johnson <hans-johnson@uiowa.edu>
Thu, 28 Jul 2016 13:51:34 +0000 (08:51 -0500)
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

index 6795a2e1837769a922224942177ae47d129c88cb..97b802601d83b532cbb5df89ac3b17933553fea9 100644 (file)
@@ -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