-
Notifications
You must be signed in to change notification settings - Fork 548
/
.travis.yml
36 lines (27 loc) · 1016 Bytes
/
.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
language: scala
scala:
- 2.11.8
jdk:
- oraclejdk8
cache:
directories:
- $HOME/.sbt
- $HOME/.m2
notifications:
email: false
script:
- export TRAVIS_SCALA_VERSION=2.11.8
- export MAVEN_SKIP_RC=1
- ulimit -a
- mvn compile -pl streamingpro-mlsql -am -Ponline -Pscala-2.11 -Phive-thrift-server -Pspark-2.2.0 -Pdsl-legacy -Pcrawler -Popencv-support > /dev/null 2>&1
- mvn test -pl streamingpro-mlsql -am -Ponline -Pscala-2.11 -Phive-thrift-server -Pspark-2.2.0 -Pdsl-legacy -Pcrawler -Popencv-support
#install: [
# "mvn install -pl streamingpro-mlsql -am -Ponline -Pscala-2.11 -Phive-thrift-server -Pspark-2.2.0 -Pdsl-legacy -Pcrawler -Popencv-support -DskipTests=true -Dmaven.javadoc.skip=true -Dgpg.skip=true"
# ]
install: true
before_install: [
"git clone https://github.com/allwefantasy/ServiceFramework.git allwefantasy/ServiceFramework",
"cd allwefantasy/ServiceFramework",
"mvn install -DskipTests -Pjetty-9 -Pweb-include-jetty-9 > /dev/null 2>&1",
"cd ../.."
]