This is an automated email from the ASF dual-hosted git repository.
zjffdu pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/zeppelin.git
The following commit(s) were added to refs/heads/master by this push:
new b56c216 ZEPPELIN-4161. Add travis job for default build
b56c216 is described below
commit b56c21626d23df59ae85fc2668787dafb123c9cf
Author: Jeff Zhang <[email protected]>
AuthorDate: Wed May 15 17:30:22 2019 +0800
ZEPPELIN-4161. Add travis job for default build
### What is this PR for?
This PR add one travis job to build zeppelin by default command:
```
mvn clean package -DskipTests
```
### What type of PR is it?
[Improvement]
### Todos
* [ ] - Task
### What is the Jira issue?
* https://jira.apache.org/jira/browse/ZEPPELIN-4161
### How should this be tested?
* CI pass
### Screenshots (if appropriate)
### Questions:
* Does the licenses files need update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No
Author: Jeff Zhang <[email protected]>
Closes #3368 from zjffdu/ZEPPELIN-4161 and squashes the following commits:
358438c60 [Jeff Zhang] ZEPPELIN-4161. Add travis job for default build
---
.travis.yml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/.travis.yml b/.travis.yml
index 2335911..0a02d08 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -57,6 +57,12 @@ matrix:
dist: trusty
env: SCALA_VER="2.11" PROFILE="-Prat" BUILD_FLAG="clean"
TEST_FLAG="org.apache.rat:apache-rat-plugin:check" TEST_PROJECTS=""
+ # Default build command, no tests
+ - sudo: required
+ jdk: "oraclejdk8"
+ dist: trusty
+ env: BUILD_FLAG="clean package -DskipTests" TEST_FLAG="test -DskipTests"
+
# Run e2e tests (in zeppelin-web)
# chrome dropped the support for precise (ubuntu 12.04), so need to use
trusty
# also, can't use JDK 7 in trusty:
https://github.com/travis-ci/travis-ci/issues/7884