summaryrefslogtreecommitdiff
path: root/tools/travis-before_install.sh
diff options
context:
space:
mode:
authorTim Landscheidt <tim@tim-landscheidt.de>2019-01-20 03:46:57 +0000
committerTim Landscheidt <tim@tim-landscheidt.de>2019-01-22 02:18:12 +0000
commit0645976caecc581923d87ca3cc8658a9f7c35f52 (patch)
tree0348f68099e49d0579345c669340fc087755897f /tools/travis-before_install.sh
parent219869caf7e6bb2b70aef3e0e9a4c52c9fd96539 (diff)
downloadfork-ledger-0645976caecc581923d87ca3cc8658a9f7c35f52.tar.gz
fork-ledger-0645976caecc581923d87ca3cc8658a9f7c35f52.tar.bz2
fork-ledger-0645976caecc581923d87ca3cc8658a9f7c35f52.zip
Use build matrix to specify Boost versions for Travis CI
In Travis CI, versions of libraries, etc. to build against are typically specified in a build matrix. In addition, currently there is no way to build against the distribution-provided Boost version. This change uses a build matrix for BOOST_VERSION and allows that variable to be empty for building against the distribution-provided Boost version.
Diffstat (limited to 'tools/travis-before_install.sh')
-rwxr-xr-xtools/travis-before_install.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/tools/travis-before_install.sh b/tools/travis-before_install.sh
deleted file mode 100755
index 365fcab1..00000000
--- a/tools/travis-before_install.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/env bash
-
-#set -x
-set -e
-set -o pipefail
-
-if [ -n "${BOOST_VERSION}" ]; then
- mkdir -p $BOOST_ROOT
- wget --no-verbose --output-document=- \
- http://sourceforge.net/projects/boost/files/boost/${BOOST_VERSION}/boost_${BOOST_VERSION//./_}.tar.bz2/download \
- | tar jxf - --strip-components=1 -C "${BOOST_ROOT}"
-fi