summaryrefslogtreecommitdiffstats
path: root/testing/source/vtown/deps/cryfs/.travisci/install.sh
diff options
context:
space:
mode:
Diffstat (limited to 'testing/source/vtown/deps/cryfs/.travisci/install.sh')
-rwxr-xr-xtesting/source/vtown/deps/cryfs/.travisci/install.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/testing/source/vtown/deps/cryfs/.travisci/install.sh b/testing/source/vtown/deps/cryfs/.travisci/install.sh
deleted file mode 100755
index 9057a75b9..000000000
--- a/testing/source/vtown/deps/cryfs/.travisci/install.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/bin/bash
-
-set -e
-
-# Install newer GCC if we're running on GCC
-if [ "${CXX}" == "g++" ]; then
- # We need to uninstall oclint because it creates a /usr/local/include/c++ symlink that clashes with the gcc5 package
- # see https://github.com/Homebrew/homebrew-core/issues/21172
- brew cask uninstall oclint
- brew install gcc@7
-fi
-
-brew cask install osxfuse
-brew install libomp
-
-# By default, travis only fetches the newest 50 commits. We need more in case we're further from the last version tag, so the build doesn't fail because it can't generate the version number.
-git fetch --unshallow --tags
-
-# Setup ccache
-brew install ccache