Browse Source

Cache build directory

tempestpy_adaptions
Matthias Volk 8 years ago
parent
commit
9aa7dd6b4d
  1. 4
      .travis.yml
  2. 4
      travis/postsubmit-helper.sh

4
.travis.yml

@ -67,6 +67,10 @@ matrix:
# script: export OS=osx; export COMPILER='clang-default'; export STL='libc++'; extras/scripts/postsubmit.sh # script: export OS=osx; export COMPILER='clang-default'; export STL='libc++'; extras/scripts/postsubmit.sh
# DebugPlain # DebugPlain
cache:
directories:
- build
services: services:
- docker - docker
sudo: required sudo: required

4
travis/postsubmit-helper.sh

@ -92,8 +92,8 @@ ReleasePlain) CMAKE_ARGS=(-DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_FLAGS="
*) echo "Error: you need to specify one of the supported postsubmit modes (see postsubmit.sh)."; exit 1 ;; *) echo "Error: you need to specify one of the supported postsubmit modes (see postsubmit.sh)."; exit 1 ;;
esac esac
rm -rf build
mkdir build
#rm -rf build
mkdir -p build
cd build cd build
cmake .. "${CMAKE_ARGS[@]}" cmake .. "${CMAKE_ARGS[@]}"
echo echo

Loading…
Cancel
Save