-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added travis config and badges to the readme
- Loading branch information
1 parent
1730148
commit e2aa4e3
Showing
2 changed files
with
35 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# http://www.scala-sbt.org/0.13/docs/Travis-CI-with-sbt.html | ||
language: scala | ||
scala: | ||
- 2.10.6 | ||
jdk: | ||
- oraclejdk8 | ||
script: | ||
- sbt ++$TRAVIS_SCALA_VERSION compile | ||
# Tricks to avoid unnecessary cache updates | ||
- find $HOME/.sbt -name "*.lock" | xargs rm | ||
- find $HOME/.ivy2 -name "ivydata-*.properties" | xargs rm | ||
notifications: | ||
email: false | ||
webhooks: | ||
urls: | ||
- https://webhooks.gitter.im/e/67562f0726ed2388330c | ||
on_success: change # options: [always|never|change] default: always | ||
on_failure: always # options: [always|never|change] default: always | ||
on_start: false | ||
# Use container-based infrastructure | ||
sudo: false | ||
# These directories are cached to S3 at the end of the build | ||
cache: | ||
directories: | ||
- $HOME/.ivy2/cache | ||
- $HOME/.sbt/boot/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters