-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add TravisCI build step, fix Javadoc formatting (PR #80)
- Loading branch information
1 parent
7e5ec90
commit 752ba54
Showing
4 changed files
with
25 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,21 @@ | ||
language: java | ||
git: | ||
depth: 3 | ||
jdk: | ||
- oraclejdk8 | ||
env: | ||
- HADOOP_VERSION=2.7.6 | ||
- HADOOP_VERSION=2.8.4 | ||
script: "./gradlew test --stacktrace --info -Ddyno.hadoop.bin.version=${HADOOP_VERSION}" | ||
git: | ||
depth: 3 | ||
install: true | ||
|
||
jobs: | ||
include: | ||
- stage: test | ||
name: "Build" | ||
script: "./gradlew build -x test" | ||
- stage: test | ||
script: "./gradlew test --stacktrace --info -Ddyno.hadoop.bin.version=${HADOOP_VERSION}" | ||
env: HADOOP_VERSION=2.7.6 | ||
- stage: test | ||
script: "./gradlew test --stacktrace --info -Ddyno.hadoop.bin.version=${HADOOP_VERSION}" | ||
env: HADOOP_VERSION=2.8.4 | ||
|
||
stages: | ||
- test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters