summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorfalkTX <falktx@falktx.com>2020-05-31 14:20:55 +0100
committerfalkTX <falktx@falktx.com>2020-05-31 14:20:55 +0100
commitf72b0cf921c10d14ccecfaaa6a1f430684d5e5d2 (patch)
treefcbe2f023fa2d6370ba18d4c1beb80c5ebad4003
parente5c16d2be09a2278fa3b55bb976845c1d73d8069 (diff)
downloadjack2-f72b0cf921c10d14ccecfaaa6a1f430684d5e5d2.tar.gz
More CI tweaks
Signed-off-by: falkTX <falktx@falktx.com>
-rwxr-xr-x.ci/install-deps.sh21
1 files changed, 20 insertions, 1 deletions
diff --git a/.ci/install-deps.sh b/.ci/install-deps.sh
index 99e67adc..69ef6fea 100755
--- a/.ci/install-deps.sh
+++ b/.ci/install-deps.sh
@@ -23,6 +23,10 @@ if [ "$TRAVIS_OS_NAME" == "osx" ]; then
if [ "${CC}" == "gcc-8" ]; then
brew install gcc@8
fi
+ # force installation of gcc-9 if required
+ if [ "${CC}" == "gcc-9" ]; then
+ brew install gcc@9
+ fi
fi
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
@@ -34,7 +38,6 @@ if [ "$TRAVIS_OS_NAME" == "linux" ]; then
libsndfile-dev \
libasound2-dev \
libdb-dev \
- systemd-services \
systemd \
libsystemd-dev \
libpam-systemd \
@@ -73,10 +76,26 @@ if [ "$TRAVIS_OS_NAME" == "linux" ]; then
if [ "${CC}" == "gcc-8" ]; then
sudo apt-get install gcc-8 g++-8
fi
+ # force installation of gcc-9 if required
+ if [ "${CC}" == "gcc-9" ]; then
+ sudo apt-get install gcc-9 g++-9
+ fi
+ # force installation of clang-3.5 if required
+ if [ "${CC}" == "clang-3.5" ]; then
+ sudo apt-get install clang-3.5
+ fi
# force installation of clang-3.8 if required
if [ "${CC}" == "clang-3.8" ]; then
sudo apt-get install clang-3.8
fi
+ # force installation of clang-6.0 if required
+ if [ "${CC}" == "clang-6.0" ]; then
+ sudo apt-get install clang-6.0
+ fi
+ # force installation of clang-8 if required
+ if [ "${CC}" == "clang-8" ]; then
+ sudo apt-get install clang-8
+ fi
fi
exit 0