summaryrefslogtreecommitdiffstats
path: root/testing/source/vtown/deps/cryfs/.travisci/install.sh
blob: 9057a75b9aea9424f675aa69eff52d6ef0ff6544 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/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