forked from apache/kyuubi
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
42 lines (37 loc) · 896 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
36
37
38
39
40
41
42
language: scala
scala:
- 2.11.8
cache:
directories:
- $HOME/.m2
- ./build
before_deploy:
- ./build/dist --tgz
deploy:
- provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
email: [email protected]
name: Kent Yao
on:
branch: master
- provider: releases
api_key: $GITHUB_TOKEN
file_glob: true
file: kyuubi-*.tar.gz
skip_cleanup: true
on:
tags: true
jobs:
include:
- stage: spark2.3
language: scala
script: ./build/mvn clean install -Pspark-2.3 -Dmaven.javadoc.skip=true -B -V
- stage: spark2.2
language: scala
script: ./build/mvn clean install -Pspark-2.2 -Dmaven.javadoc.skip=true -B -V
- stage: spark2.1
language: scala
script: ./build/mvn clean install -Pspark-2.1 -Dmaven.javadoc.skip=true -B -V
after_success:
- bash <(curl -s https://codecov.io/bash)