Skip to content

Commit aa9010e

Browse files
committedMay 2, 2016
Limit ccache size to 150M
1 parent 1827546 commit aa9010e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
 

‎ci/travis/linux/qt4/script.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
export CCACHE_CPP2=YES
21
export CTEST_PARALLEL_LEVEL=1
32
export PYTHONPATH=${HOME}/osgeo4travis/lib/python2.7/site-packages/
43
export PATH=${HOME}/osgeo4travis/bin:${HOME}/osgeo4travis/sbin:${PATH}
54
export LD_LIBRARY_PATH=${HOME}/osgeo4travis/lib
65

6+
ccache -o max_size=150M
7+
ccache -o run_second_cpp=true
8+
79
xvfb-run ctest -V -E 'qgis_openstreetmaptest|qgis_wcsprovidertest' -S ./qgis-test-travis.ctest --output-on-failure

‎ci/travis/linux/qt5/script.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,8 @@ export CTEST_PARALLEL_LEVEL=1
33

44
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
55

6+
ccache -o max_size=150M
7+
ccache -o run_second_cpp=true
8+
69
xvfb-run ctest -V -E "$(cat ${DIR}/blacklist.txt | paste -sd '|' -)" -S ./qgis-test-travis.ctest --output-on-failure
710
# xvfb-run ctest -V -S ./qgis-test-travis.ctest --output-on-failure

0 commit comments

Comments
 (0)
Please sign in to comment.