forked from banana-rdf/banana-rdf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
49 lines (41 loc) · 1.44 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
44
45
46
47
48
49
# sbt/travis documentation
# * http://www.scala-sbt.org/0.13/docs/Travis-CI-with-sbt.html
# * http://docs.travis-ci.com/user/languages/scala/
# * http://blog.travis-ci.com/2014-12-17-faster-builds-with-container-based-infrastructure/
#
# SBT Concurrency:
# By default, SBT runs tasks concurrently and sets the limit of
# parallel tasks by looking at the number of cores available. Note
# however, that each tasks uses more memory as well, so machines with
# more cores will need to allocate more memory to SBT. On Travis,
# there is currently 2 cores and so the default SBT java settings are
# adequate. The rule seems to be to set the flag -XmxN, where N =
# No. cores / 4 - eg with 8 cores(4 real, with hyper threading 8) -
# -Xmx2048m
sudo: false
language: scala
## Scala-JS 0.6.13 and later uses NodeJS instead of Rhino to run Scala-JS tests
# here we configure NodeJS enviroment
install:
- . $HOME/.nvm/nvm.sh
- nvm install stable
- nvm use stable
- npm install
- npm install jsdom
script:
- sbt ++$TRAVIS_SCALA_VERSION -jvm-opts .travis-jvmopts validate
jdk:
- oraclejdk11
scala:
- 2.13.5
branches:
only:
- /^series/.*$/
notifications:
irc: "chat.freenode.net#banana-rdf"
webhooks:
urls:
- https://webhooks.gitter.im/e/30f837cd3dec6d6230c2
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: true # default: false