-
Notifications
You must be signed in to change notification settings - Fork 14
/
.travis.yml
45 lines (41 loc) · 1.09 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
sudo: false
language: scala
scala: 2.11.7
jdk: oraclejdk8
# disable the default submodule logic
git:
submodules: false
# use sed to replace the SSH URL with the public URL, then init and update submodules
before_install:
- sed -i 's/[email protected]:/https:\/\/github.com\//' .gitmodules
- git submodule update --init --recursive
install:
# - npm install grunt-cli -g
# - npm install
cache:
directories:
- $HOME/.ivy2/cache
- $HOME/.sbt/boot/
before_script:
- sbt start &
- sleep 300
script:
# - sbt "test-only *Spec"
- echo "XXXXX Starting the tests"
- sbt test
# - grunt test
notifications:
email:
recipients:
on_success: change
on_failure: always
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/f23f18e269041b573594
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always