Skip to content

Commit c703e05

Browse files
committed
.travis.yml: Add ccache
1 parent 1b5bd09 commit c703e05

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.travis.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
sudo: required
22
language: c++
3-
before_install: ./scripts/travis-install-build-deps.sh
3+
cache: ccache
4+
before_install:
5+
# Clear ccache stats
6+
- ccache -z
7+
- ./scripts/travis-install-build-deps.sh
48
script: ./scripts/travis-build-test.sh
9+
after_success:
10+
# Show ccache stats
11+
- ccache -s
12+
513
notifications:
614
email: false

0 commit comments

Comments
 (0)