diff options
author | Massimiliano Culpo <massimiliano.culpo@gmail.com> | 2018-12-14 17:43:04 +0100 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2018-12-14 08:43:04 -0800 |
commit | 488e513e849ca8e7181ba6e7459dfa15a6e86be8 (patch) | |
tree | 635118780a6a1440babd955b7a75ff502d817298 /share | |
parent | d2d0ab06b73ffe0f19a258391b35d02e93f1c3fb (diff) | |
download | spack-488e513e849ca8e7181ba6e7459dfa15a6e86be8.tar.gz spack-488e513e849ca8e7181ba6e7459dfa15a6e86be8.tar.bz2 spack-488e513e849ca8e7181ba6e7459dfa15a6e86be8.tar.xz spack-488e513e849ca8e7181ba6e7459dfa15a6e86be8.zip |
Turn on verbose output for MPICH builds in Travis (#10105)
Lately many CI runs for PRs are failing due to the `mpich` build that
times out on Travis (10 mins. without output). As the timeout seems to
happen consistently during the build phase, increasing the verbosity of
that test can help working around the issue.
Diffstat (limited to 'share')
-rwxr-xr-x | share/spack/qa/run-build-tests | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/share/spack/qa/run-build-tests b/share/spack/qa/run-build-tests index 315c0b8e99..5e340d4578 100755 --- a/share/spack/qa/run-build-tests +++ b/share/spack/qa/run-build-tests @@ -33,8 +33,12 @@ if [ -z "$SPEC" ]; then exit 1 fi +if [ "${SPEC}" = "mpich" ] ; then + OPTIONS="-v" +fi + # Print compiler information spack config get compilers # Run some build smoke tests, potentially with code coverage -${coverage_run} bin/spack install ${SPEC} +${coverage_run} bin/spack install ${OPTIONS} ${SPEC} |