[Jython-checkins] jython: Manually install ant via homebrew for Mac OS X Travis

darjus.loktevic jython-checkins at python.org
Wed Oct 7 06:54:47 CEST 2015


https://hg.python.org/jython/rev/39fa8f188c32
changeset:   7744:39fa8f188c32
user:        Darjus Loktevic <darjus at gmail.com>
date:        Wed Oct 07 15:54:41 2015 +1100
summary:
  Manually install ant via homebrew for Mac OS X Travis

files:
  .travis.yml |  2 ++
  1 files changed, 2 insertions(+), 0 deletions(-)


diff --git a/.travis.yml b/.travis.yml
--- a/.travis.yml
+++ b/.travis.yml
@@ -25,6 +25,8 @@
 
 before_install:
   - if [ "$TRAVIS_OS_NAME" == "osx" ]; then export JAVA_HOME=$(/usr/libexec/java_home); fi
+  - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew update; fi
+  - if [ "$TRAVIS_OS_NAME" == "osx" ]; then brew install ant; fi
   - if [ "$TRAVIS_OS_NAME" == "linux" ]; then jdk_switcher use "$CUSTOM_JDK"; fi
 
 script: ant && ant regrtest

-- 
Repository URL: https://hg.python.org/jython


More information about the Jython-checkins mailing list