Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use ccache #241

Merged
merged 1 commit into from Jul 13, 2016
Merged

Use ccache #241

Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

Use ccache

  • Loading branch information
Manishearth committed May 27, 2016
commit ad76c4d1530e79f6f705536cb62eb4c6ce7a6f99
@@ -11,12 +11,19 @@ env:
- FEATURES=""
- FEATURES="--features debugmozjs"

before_install:
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install ccache; fi

script:
- travis_wait cargo build --verbose $FEATURES
- cargo test --verbose $FEATURES
- ccache -z
- CCACHE=$(which ccache) travis_wait cargo build --verbose $FEATURES
- CCACHE=$(which ccache) cargo test --verbose $FEATURES
- ccache -s

branches:
except:
- master
notifications:
webhooks: http://build.servo.org:54856/travis

cache: ccache
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.