aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2019-07-07 10:15:32 +0200
committercbdev <cb@cbcdn.com>2019-07-07 10:15:32 +0200
commit4681120c21567df21d09903cdb2d3d8387786421 (patch)
tree5659bdcf21b767661c3c132897d1df9d8f52f14d /.travis.yml
parent62b41d0b2ea58b48961308ab24fe4287365b2d50 (diff)
downloadmidimonster-4681120c21567df21d09903cdb2d3d8387786421.tar.gz
midimonster-4681120c21567df21d09903cdb2d3d8387786421.tar.bz2
midimonster-4681120c21567df21d09903cdb2d3d8387786421.zip
Add lua dependency to macos for travis
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 66bfd9a..74af4c3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -159,7 +159,7 @@ install:
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install ccache ola; fi
+ - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install ccache ola lua; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then PATH=/usr/local/opt/ccache/libexec:$PATH; fi # Use ccache on Mac too
#Coverity doesn't work with g++ 5 or 6, so only upgrade to g++ 4.9 for that
- if [ "$TRAVIS_OS_NAME" == "linux" -a \( "$TASK" = "compile" -o "$TASK" = "sanitize" \) -a "$CC" = "gcc" ]; then export CC="ccache gcc-8"; export CXX="ccache g++-8"; fi