summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorTim Landscheidt <tim@tim-landscheidt.de>2019-01-20 03:18:15 +0000
committerTim Landscheidt <tim@tim-landscheidt.de>2019-01-22 01:41:15 +0000
commit219869caf7e6bb2b70aef3e0e9a4c52c9fd96539 (patch)
treee4da17d5bf2dbbfd6623ae86cf3bcfa5ffb64536 /tools
parent53f4035a2f4a6f33b447ce3658c4dc062058c422 (diff)
downloadfork-ledger-219869caf7e6bb2b70aef3e0e9a4c52c9fd96539.tar.gz
fork-ledger-219869caf7e6bb2b70aef3e0e9a4c52c9fd96539.tar.bz2
fork-ledger-219869caf7e6bb2b70aef3e0e9a4c52c9fd96539.zip
Remove broken and disabled Travis CI configurations
The Travis CI configurations for macOS, Clang on Linux and CheckTexinfo.py and CheckManpage.py are broken and disabled or ignored. They appear to be non-trivial to fix, so the current stub is probably more distracting than helpful while also making changes to the working Linux configuration more difficult.
Diffstat (limited to 'tools')
-rwxr-xr-xtools/travis-before_install.sh4
-rwxr-xr-xtools/travis-install.sh10
2 files changed, 0 insertions, 14 deletions
diff --git a/tools/travis-before_install.sh b/tools/travis-before_install.sh
index fe010945..365fcab1 100755
--- a/tools/travis-before_install.sh
+++ b/tools/travis-before_install.sh
@@ -4,10 +4,6 @@
set -e
set -o pipefail
-if [ "${TRAVIS_OS_NAME}" = "osx" ]; then
- brew update
-fi
-
if [ -n "${BOOST_VERSION}" ]; then
mkdir -p $BOOST_ROOT
wget --no-verbose --output-document=- \
diff --git a/tools/travis-install.sh b/tools/travis-install.sh
index 4e8bdc48..995f18df 100755
--- a/tools/travis-install.sh
+++ b/tools/travis-install.sh
@@ -4,16 +4,6 @@
set -e
set -o pipefail
-if [ "${TRAVIS_OS_NAME}" = "osx" ]; then
- for formula in $(echo "${BREWS//,/ }"); do
- echo "Checking ${formula} formula"
- brew outdated "${formula}" \
- || (brew unlink "${formula}"
- brew install "${formula}"
- )
- done
-fi
-
if [ -d "${BOOST_ROOT}" ]; then
(cd "${BOOST_ROOT}"
./bootstrap.sh --with-libraries="${BOOST_LIBS}"