Skip to content
This repository has been archived by the owner on Dec 9, 2018. It is now read-only.

Commit

Permalink
move cache directory from OpenBLAS.cache to .travis/OpenBLAS.cache
Browse files Browse the repository at this point in the history
Moving the cache directory into .travis means that the check-generate.sh
script no longer compares the cache directory to the git repo, because
everything in the .travis/ directory is ignored.  Also, it is probably a
better place for it.
  • Loading branch information
jonlawlor committed Jul 22, 2016
1 parent ed2dd29 commit f73f66c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ matrix:
# Cache used to persist the compiled BLAS library between CI calls.
cache:
directories:
- OpenBLAS.cache
- .travis/OpenBLAS.cache

# Install the appropriate blas library (if any) and associated gonum software.
install:
Expand Down
2 changes: 1 addition & 1 deletion .travis/linux/OpenBLAS/install.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
set -ex

CACHE_DIR=${TRAVIS_BUILD_DIR}/${BLAS_LIB}.cache
CACHE_DIR=${TRAVIS_BUILD_DIR}/.travis/${BLAS_LIB}.cache

# fetch fortran to build OpenBLAS
sudo apt-get update -qq && sudo apt-get install -qq gfortran
Expand Down

0 comments on commit f73f66c

Please sign in to comment.