kyuubi/.travis.yml
2020-08-21 16:13:25 +08:00

38 lines
718 B
YAML

language: scala
scala:
- 2.12.10
jdk:
- openjdk8
cache:
directories:
- $HOME/.m2
- ./build
deploy:
- provider: pages
skip_cleanup: true
keep_history: 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: kyuubi-*.tar.gz
skip_cleanup: true
on:
tags: true
jobs:
include:
- stage: spark3.0.0
language: scala
script:
- mvn clean verify -pl :kyuubi-common,:kyuubi-ha,:kyuubi-main,:kyuubi-spark-sql-engine,:kyuubi-codecov -Dmaven.javadoc.skip=true -B -V
after_success:
- bash <(curl -s https://codecov.io/bash)