File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 2
2
osx_image : xcode11.3
3
3
language : objective-c
4
4
cache :
5
- - bundler
6
- - cocoapods
5
+ bundler : true
6
+ cocoapods : true
7
+ directories :
8
+ # Built-in support for ccache doesn't seem to pick this up
9
+ - $HOME/.ccache
7
10
8
11
stages :
9
12
- checks
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ endif()
43
43
# Enable the ccache compilation cache, if available.
44
44
find_program (CCACHE_PROGRAM ccache )
45
45
if (CCACHE_PROGRAM )
46
+ message (STATUS "Found ccache: ${CCACHE_PROGRAM} " )
46
47
set (CMAKE_C_COMPILER_LAUNCHER "${CCACHE_PROGRAM} " )
47
48
set (CMAKE_CXX_COMPILER_LAUNCHER "${CCACHE_PROGRAM} " )
48
49
endif ()
Original file line number Diff line number Diff line change @@ -126,6 +126,7 @@ case "$PROJECT-$PLATFORM-$METHOD" in
126
126
Firestore-* -cmake)
127
127
brew outdated cmake || brew upgrade cmake
128
128
brew outdated go || brew upgrade go # Somehow the build for Abseil requires this.
129
+ brew install ccache
129
130
130
131
# Install python packages required to generate proto sources
131
132
pip install six
You can’t perform that action at this time.
0 commit comments