Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added Travis CI config
  • Loading branch information
laughedelic committed Mar 5, 2016
1 parent 5bc8120 commit bf8cd10
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .travis.yml
@@ -0,0 +1,26 @@
# http://www.scala-sbt.org/0.13/docs/Travis-CI-with-sbt.html
language: scala
scala:
- 2.11.7
jdk:
- oraclejdk8
script:
- sbt 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/f1acce2079bd08803c2f
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/

0 comments on commit bf8cd10

Please sign in to comment.