forked from yaooqinn/spark-postgres
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
39 lines (34 loc) · 763 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
language: scala
scala:
- 2.11.8
cache:
directories:
- $HOME/.m2
- ./build
before_deploy:
- mvn clean package -DskipTests
deploy:
- provider: pages
skip_cleanup: true
github_token: $GITHUB_TOKEN
email: yaooqinn@hotmail.com
name: Kent Yao
on:
branch: master
- provider: releases
api_key: $GITHUB_TOKEN
file_glob: true
file: target/spark-greenplum*.jar
skip_cleanup: true
on:
tags: true
jobs:
include:
- stage: spark2.4
language: scala
script: mvn clean install -Pspark-2.4 -Dmaven.javadoc.skip=true -B -V
- stage: spark2.3
language: scala
script: mvn clean install -Dmaven.javadoc.skip=true -B -V
after_success:
- bash <(curl -s https://codecov.io/bash)