File tree 1 file changed +8
-0
lines changed
1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -177,17 +177,24 @@ jobs:
177
177
packages :
178
178
- g++-5
179
179
install :
180
+ - ccache -z
181
+ - ccache --max-size=1G
180
182
- cmake -H. -Bbuild '-DCMAKE_BUILD_TYPE=Release' '-DCMAKE_CXX_COMPILER=g++-5'
181
183
- cmake --build build -- -j4
182
184
script : (cd build; ctest -V -L CORE)
183
185
184
186
- stage : Test different OS/CXX/Flags
185
187
os : osx
186
188
cache : ccache
189
+ before_install :
190
+ - HOMEBREW_NO_AUTO_UPDATE=1 brew install ccache
191
+ - export PATH=/usr/local/opt/ccache/libexec:$PATH
187
192
env :
188
193
- BUILD_SYSTEM=cmake
189
194
- CCACHE_CPP2=yes
190
195
install :
196
+ - ccache -z
197
+ - ccache --max-size=1G
191
198
- cmake -H. -Bbuild '-DCMAKE_BUILD_TYPE=Release' '-DCMAKE_OSX_ARCHITECTURES=x86_64'
192
199
- cmake --build build -- -j4
193
200
script : (cd build; ctest -V -L CORE)
@@ -235,6 +242,7 @@ jobs:
235
242
- << : *linter-stage
236
243
237
244
install :
245
+ - ccache -z
238
246
- ccache --max-size=1G
239
247
- make -C src minisat2-download
240
248
- make -C src/ansi-c library_check
You can’t perform that action at this time.
0 commit comments