summaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-04-03 07:27:41 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-04-03 07:27:41 (GMT)
commite60e69eac9658b020c0e5cf4de6db27157c5f55d (patch)
treef0a8911c8e9b5539aeeb4c59038bda38f89726c9 /.travis.yml
parent381c52e801647c8e1af5eb08a6f298a29cdbf72a (diff)
downloadtcl-e60e69eac9658b020c0e5cf4de6db27157c5f55d.zip
tcl-e60e69eac9658b020c0e5cf4de6db27157c5f55d.tar.gz
tcl-e60e69eac9658b020c0e5cf4de6db27157c5f55d.tar.bz2
Update xcode 8 -> 8.3 and 9 -> 9.2 for Travis build. Install latest libtommath homebrew package without hack, this time.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml26
1 files changed, 12 insertions, 14 deletions
diff --git a/.travis.yml b/.travis.yml
index 1f7b2d5..65747b2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -10,6 +10,10 @@ addons:
- gcc-mingw-w64-i686
- gcc-mingw-w64-x86-64
- gcc-multilib
+ homebrew:
+ packages:
+ - libtommath
+ update: true
matrix:
include:
# Testing on Linux with various compilers
@@ -120,11 +124,6 @@ matrix:
- BUILD_DIR=unix
- CFGOPT="--enable-symbols=mem"
# Testing on Mac, various styles
- - name: "macOS/Xcode 11.3/Shared/Unix-like"
- os: osx
- osx_image: xcode11.3
- env:
- - BUILD_DIR=unix
- name: "macOS/Xcode 11.3/Shared"
os: osx
osx_image: xcode11.3
@@ -135,6 +134,12 @@ matrix:
- make all
# The styles=develop avoids some weird problems on OSX
- make test styles=develop
+ - name: "macOS/Xcode 11.3/Shared/Unix-like"
+ os: osx
+ osx_image: xcode11.3
+ env:
+ - BUILD_DIR=unix
+# Older MacOS versions
- name: "macOS/Xcode 11/Shared"
os: osx
osx_image: xcode11
@@ -151,14 +156,14 @@ matrix:
script: *mactest
- name: "macOS/Xcode 9/Shared"
os: osx
- osx_image: xcode9
+ osx_image: xcode9.2
env:
- BUILD_DIR=macosx
install: []
script: *mactest
- name: "macOS/Xcode 8/Shared"
os: osx
- osx_image: xcode8
+ osx_image: xcode8.3
env:
- BUILD_DIR=macosx
install: []
@@ -357,13 +362,6 @@ matrix:
- CFGOPT="--enable-symbols=mem"
before_install: *makepreinst
before_install:
- - |-
- case $TRAVIS_OS_NAME in
- osx)
- brew update
- brew install libtommath
- ;;
- esac
- cd ${BUILD_DIR}
install:
- ./configure ${CFGOPT} --prefix=$HOME || (cat config.log && exit 1)