diff options
author | 1138-4EB <1138-4EB@users.noreply.github.com> | 2018-05-21 21:24:40 +0200 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2018-05-23 20:28:31 +0200 |
commit | f23e973f2edadfacb81119f9106d0559caa4f780 (patch) | |
tree | 0330510d691b38e32f79cc1003d0fd509eda6198 | |
parent | 62c42b50df209ef46bcdedea113b6fb02cf94267 (diff) | |
download | ghdl-f23e973f2edadfacb81119f9106d0559caa4f780.tar.gz ghdl-f23e973f2edadfacb81119f9106d0559caa4f780.tar.bz2 ghdl-f23e973f2edadfacb81119f9106d0559caa4f780.zip |
add xcode8.3 and xcode9.3 travis jobs
-rw-r--r-- | .travis.yml | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index a5767d472..5bff6a5da 100644 --- a/.travis.yml +++ b/.travis.yml @@ -67,9 +67,10 @@ jobs: script: if echo "$TRAVIS_COMMIT_MESSAGE" | grep -F -q "[ci images]"; then ./dist/linux/create.sh; fi; deploy: - <<: *deploy-docker - # A single additional job is described in stage 'test' for the macos build. + # Additional jobs are described in stage 'test' for the macos build. # The constraints above are used, except explicitly overriden. - - stage: test + - &osx + stage: test os: osx language: c osx_image: xcode7.3 @@ -80,3 +81,7 @@ jobs: env: IMAGE=macosx+mcode deploy: - <<: *deploy-releases + - <<: *osx + osx_image: xcode8.3 + - <<: *osx + osx_image: xcode9.3 |