forked from mingjiang-zeng/rheem
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
28 lines (25 loc) · 1.02 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
language: java
notification:
email:
on_success: never
on_failure: never
webhooks:
urls:
- https://webhooks.gitter.im/e/8eed86a6ecffb667b819
on_success: change
on_failure: always
on_start: false
install: true
before_script:
- mkdir -p travis/tmp
- echo "rheem.basic.tempdir = file://$(pwd)/travis/tmp" >> travis/rheem.properties
- echo "spark.driver.host = localhost" >> travis/rheem.properties
- echo "spark.master = local[1]" >> travis/rheem.properties
- echo "rheem.giraph.job.tracker = localhost:50300" >> travis/rheem.properties
- echo "rheem.giraph.maxWorkers = 1" >> travis/rheem.properties
- echo "rheem.giraph.minWorkers = 1" >> travis/rheem.properties
- echo "rheem.mapreduce.job.counters.limit = 200" >> travis/rheem.properties
- cat travis/rheem.properties
- mvn_opts=("-Dorg.slf4j.simpleLogger.defaultLogLevel=error" "-Drheem.configuration=file://$(pwd)/travis/rheem.properties")
script:
- bin/change-scala-version.sh 2.11.8 && mvn clean install -Pdistro "${mvn_opts[@]}"