-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add OpenJDK 7 build + fix test race condition + javadoc fix (#42)
- Loading branch information
1 parent
1d95560
commit 34a7b83
Showing
6 changed files
with
76 additions
and
26 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,10 +1,27 @@ | ||
version: 2 | ||
version: 2.1 | ||
|
||
workflows: | ||
test: | ||
jobs: | ||
- openjdk8 | ||
- openjdk7 | ||
|
||
jobs: | ||
build: | ||
docker: | ||
- image: circleci/openjdk:8 | ||
environment: | ||
- TERM: dumb | ||
steps: | ||
- checkout | ||
- run: ./gradlew test sourcesJar javadocJar | ||
openjdk8: | ||
docker: | ||
- image: circleci/openjdk:8 | ||
environment: | ||
- TERM: dumb | ||
steps: | ||
- checkout | ||
- run: ./gradlew test sourcesJar javadocJar | ||
|
||
openjdk7: | ||
# This build uses LaunchDarkly's ld-jdk7-jdk8 image which has both OpenJDK 7 and | ||
# OpenJDK 8 installed, with 8 being the default that is used to run Gradle. | ||
# See: https://github.com/launchdarkly/sdks-ci-docker | ||
docker: | ||
- image: ldcircleci/ld-jdk7-jdk8 | ||
steps: | ||
- checkout | ||
- run: ./gradlew -i -Dorg.gradle.project.overrideJavaHome=$JDK7_HOME test sourcesJar javadocJar |
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
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