diff options
author | Clifford Wolf <clifford@clifford.at> | 2017-11-24 18:14:53 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2017-11-24 18:14:53 +0100 |
commit | 66f2d10822a37dd4c7d9af36de9faf90cb412b6e (patch) | |
tree | c3b0446b37da1601536d0033a8638e11c94092bf /.travis/common.sh | |
parent | e3a51b3e876e1bf41cf2e66d66a0e793b8e658d6 (diff) | |
parent | 203c2dae3cdd255956d5db23d28f241eeca21612 (diff) | |
download | yosys-66f2d10822a37dd4c7d9af36de9faf90cb412b6e.tar.gz yosys-66f2d10822a37dd4c7d9af36de9faf90cb412b6e.tar.bz2 yosys-66f2d10822a37dd4c7d9af36de9faf90cb412b6e.zip |
Merge branch 'master' into btor-ng
Diffstat (limited to '.travis/common.sh')
-rw-r--r-- | .travis/common.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.travis/common.sh b/.travis/common.sh new file mode 100644 index 000000000..8eecc4c09 --- /dev/null +++ b/.travis/common.sh @@ -0,0 +1,15 @@ +#! /bin/bash + +# Setup the CC / CXX from the matrix config +eval "${MATRIX_EVAL}" + +# Look for location binaries first +export PATH="$HOME/.local-bin/bin:$PATH" + +# OS X specific common setup +if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then + export PATH="/usr/local/opt/ccache/libexec:$PATH" +fi + +# Parallel builds! +MAKEFLAGS="-j 2" |