aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2019-08-22 21:38:06 +0200
committercbdev <cb@cbcdn.com>2019-08-22 21:38:06 +0200
commitbfa4cbb012ce49f59d983d275da8837b50872c16 (patch)
treea4038e2d2c183c19009dbc2a795a6ee28f85cba0 /.travis.yml
parent8b016f61a4b3d3be0c7b1e311209ab991276af0c (diff)
downloadmidimonster-bfa4cbb012ce49f59d983d275da8837b50872c16.tar.gz
midimonster-bfa4cbb012ce49f59d983d275da8837b50872c16.tar.bz2
midimonster-bfa4cbb012ce49f59d983d275da8837b50872c16.zip
Update travis dependencies
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 8d21ef3..305dc61 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -21,6 +21,7 @@ addons:
- libevdev-dev
- libola-dev
- liblua5.3-dev
+ - libssl-dev
packages: &core_build_gpp_latest
- *core_build
- gcc-8
@@ -162,7 +163,7 @@ install:
before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
- - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install ccache ola lua; fi
+ - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install ccache ola lua openssl; 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