summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2018-10-21 10:16:05 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2018-10-21 10:16:05 (GMT)
commit0c78f5bbada0703c8063287e2e063604c4023ba7 (patch)
tree3681bd86e5eeb8d13b50a1941bb888679aa5728e /.travis.yml
parent2e0a0b53053f3699f0593ca9e50b5ba45a548da1 (diff)
downloadtcl-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.yml12
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