summaryrefslogtreecommitdiff
path: root/tools/travis-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-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-install.sh')
-rwxr-xr-xtools/travis-install.sh12
1 files changed, 0 insertions, 12 deletions
diff --git a/tools/travis-install.sh b/tools/travis-install.sh
deleted file mode 100755
index 995f18df..00000000
--- a/tools/travis-install.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/usr/bin/env bash
-
-#set -x
-set -e
-set -o pipefail
-
-if [ -d "${BOOST_ROOT}" ]; then
- (cd "${BOOST_ROOT}"
- ./bootstrap.sh --with-libraries="${BOOST_LIBS}"
- ./b2 threading=multi --prefix="${BOOST_ROOT}" -d0 install
- )
-fi