aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorcbdev <cb@cbcdn.com>2020-03-03 23:11:14 +0100
committercbdev <cb@cbcdn.com>2020-03-03 23:11:14 +0100
commitfe84e353f2580315804319438b1951752249a9ee (patch)
tree0c88e2820332f60e97c76ddc2d4bbb8ea30598af /.travis.yml
parent1618f49ff5dc317968e385e5cbc4aae32e8fb67b (diff)
downloadmidimonster-fe84e353f2580315804319438b1951752249a9ee.tar.gz
midimonster-fe84e353f2580315804319438b1951752249a9ee.tar.bz2
midimonster-fe84e353f2580315804319438b1951752249a9ee.zip
Implement python backend
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 2900b96..d9c03d3 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -23,6 +23,7 @@ addons:
- libola-dev
- libjack-jackd2-dev
- liblua5.3-dev
+ - python3-dev
- libssl-dev
- lintian
packages: &core_build_gpp_latest
@@ -143,7 +144,7 @@ before_install:
- git pull --tags
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew update; fi
# 'brew install' sometimes returns non-zero for some arcane reason. Executing 'true' resets the exit code and allows Travis to continue building...
- - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install ccache ola lua openssl jack; true; fi
+ - if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install ccache ola lua openssl jack python3; true; fi
# OpenSSL is not a proper install due to some Apple bull, so provide additional locations via the environment...
# Additionally, newer versions of this "recipe" seem to use the name 'openssl@1.1' instead of plain 'openssl' and there seems to be
# no way to programmatically get the link and include paths. Genius! Hardcoding the new version for the time being...