Skip to content
Snippets Groups Projects
Commit f6e2f5df authored by Vicki Pfau's avatar Vicki Pfau
Browse files

travis: Put back ccache

parent 749b0ef1
No related branches found
No related tags found
No related merge requests found
...@@ -69,9 +69,10 @@ def main(): ...@@ -69,9 +69,10 @@ def main():
# update brew first, which should install the correct version of ruby # update brew first, which should install the correct version of ruby
# and avoid the error "Homebrew must be run under Ruby 2.3" # and avoid the error "Homebrew must be run under Ruby 2.3"
call(['brew', 'update']) call(['brew', 'update'])
call(['brew', 'install', 'libzip', 'lua@5.1']) call(['brew', 'install', 'libzip', 'lua@5.1', 'ccache'])
elif os_name != 'linux': elif os_name == 'linux':
raise Exception('unrecognized os name') cmake_options = []
os.environ['PATH'] = '/usr/lib/ccache:' + os.environ['PATH']
with Fold('script.build', 'Building'): with Fold('script.build', 'Building'):
call(['cmake', '.', '-DBUILD_TESTS=ON']) call(['cmake', '.', '-DBUILD_TESTS=ON'])
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment