summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@csail.mit.edu>2016-08-02 15:45:40 -0400
committerGravatar Adam Chlipala <adamc@csail.mit.edu>2016-08-02 15:45:40 -0400
commit49e3fbd9ee3945f205a9d045d303dcdb6d44adee (patch)
tree5d4a93e588fe1490a47273bfd82e2ef38ff048b6 /.travis.yml
parentb3f8862743007588173db6c65b0fa093e0b8e81d (diff)
Update Travis tests to (1) use MLton from main package repo and (2) apply an OS X libtool workaround
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 0b2b8b90..2e202470 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -20,7 +20,8 @@ before_install:
- if command -v apt-get &>/dev/null; then sudo apt-get update -qq; fi
- if command -v apt-get &>/dev/null; then sudo apt-get install -y mlton; fi
- if command -v brew &>/dev/null; then brew update; fi
- - if command -v brew &>/dev/null; then brew tap MLton/mlton; fi
+ - if command -v brew &>/dev/null; brew uninstall libtool; fi
+ - if command -v brew &>/dev/null; brew install libtool; fi
- if command -v brew &>/dev/null; then brew install openssl mlton; fi
- if command -v brew &>/dev/null; then export CONFIGURE_ARGS="--with-openssl=/usr/local/opt/openssl"; fi