diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2018-10-21 10:16:05 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2018-10-21 10:16:05 (GMT) |
commit | 0c78f5bbada0703c8063287e2e063604c4023ba7 (patch) | |
tree | 3681bd86e5eeb8d13b50a1941bb888679aa5728e /.travis.yml | |
parent | 2e0a0b53053f3699f0593ca9e50b5ba45a548da1 (diff) | |
download | tcl-0c78f5bbada0703c8063287e2e063604c4023ba7.zip tcl-0c78f5bbada0703c8063287e2e063604c4023ba7.tar.gz tcl-0c78f5bbada0703c8063287e2e063604c4023ba7.tar.bz2 |
Disable windows builds. Make test failures fatal.
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 3abeb6b..d5c93c1 100644 --- a/.travis.yml +++ b/.travis.yml @@ -48,16 +48,18 @@ matrix: - os: osx osx_image: xcode8 env: - - MATRIX_EVAL="BUILD_DIR=macosx" - - os: windows - env: - - MATRIX_EVAL="BUILD_DIR=win" + - MATRIX_EVAL="BUILD_DIR=macosx && NO_DIRECT_CONFIGURE=1" +### C builds not currently supported on Windows instances +# - os: windows +# env: +# - MATRIX_EVAL="BUILD_DIR=win" before_install: - eval "${MATRIX_EVAL}" + - export ERROR_ON_FAILURES=1 - cd ${BUILD_DIR} install: - - ./configure + - test -z "$NO_DIRECT_CONFIGURE" || ./configure script: - make - make test |