diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-07-15 07:15:23 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2019-07-15 07:15:23 (GMT) |
commit | 440325f1fa705f0ab32f1590644516a3fdd149cb (patch) | |
tree | 5edf49218794cfe73453002fff57e8ba38b443ad /.travis.yml | |
parent | 44d36b0777e2194f24961fa3bf201792b658ab92 (diff) | |
download | tcl-440325f1fa705f0ab32f1590644516a3fdd149cb.zip tcl-440325f1fa705f0ab32f1590644516a3fdd149cb.tar.gz tcl-440325f1fa705f0ab32f1590644516a3fdd149cb.tar.bz2 |
Fix travis build for xcode 9/10/11
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 08acabc..886366b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -91,7 +91,10 @@ matrix: env: - BUILD_DIR=macosx install: [] - script: *mactest + script: &mactest + - make all + # The styles=develop avoids some weird problems on OSX + - make test styles=develop - name: "macOS/Xcode 10/Shared/Mac-like" os: osx osx_image: xcode10.2 @@ -112,10 +115,7 @@ matrix: env: - BUILD_DIR=macosx install: [] - script: &mactest - - make all - # The styles=develop avoids some weird problems on OSX - - make test styles=develop + script: *mactest # Test with mingw-w64 (32 bit) cross-compile # Doesn't run tests because wine is only an imperfect Windows emulation - name: "Linux-cross-Windows-32/GCC/Shared/no test" |