diff options
author | fab <fabrice.leal.ch@gmail.com> | 2018-12-17 23:16:49 +0000 |
---|---|---|
committer | fab <fabrice.leal.ch@gmail.com> | 2018-12-17 23:16:49 +0000 |
commit | 8bb360844cbf9861364fd3f8b39b0f1232711e92 (patch) | |
tree | 4c6ca73c611909c712b47465da6d5a189ef6f950 | |
parent | 05029221a3331f3f0392a4a940a84fb930dfe16d (diff) |
getting osx to build on travis. had to change the compiler to insert our icu includes and libs override in cases where the compiler cant find the necessary files in the "normal" places
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 1becfb0f..1f768f6d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,11 @@ language: c os: - - osx - linux + - osx compiler: + - clang - gcc # when https://github.com/travis-ci/apt-package-whitelist/issues/792 is closed, use the container-based infrastructure @@ -22,7 +23,6 @@ before_install: - if command -v brew &>/dev/null; then brew uninstall libtool; fi - if command -v brew &>/dev/null; then brew install libtool; fi - if command -v brew &>/dev/null; then brew install openssl mlton icu4c; fi - - if command -v brew &>/dev/null; then brew ls --verbose icu4c; fi - if command -v brew &>/dev/null; then export ICU_INCLUDES=-I"`brew --prefix icu4c`/include"; fi - if command -v brew &>/dev/null; then export ICU_LIBS=-L"`brew --prefix icu4c`/lib"; fi - if command -v brew &>/dev/null; then export CONFIGURE_ARGS="--with-openssl=/usr/local/opt/openssl"; fi |