-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added appveyor and travis for CI testing #26
- Loading branch information
Showing
3 changed files
with
48 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
notifications: | ||
email: false | ||
language: java | ||
jdk: | ||
- oraclejdk8 | ||
|
||
addons: | ||
apt: | ||
packages: | ||
- oracle-java8-installer | ||
|
||
# command to build | ||
install: | ||
- gradle assemble | ||
- gradle build | ||
- gradle jar | ||
- gradle javadoc | ||
|
||
# command to run tests | ||
script: | ||
- gradle check | ||
|
||
after_success: |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
version: "{branch} {build}" | ||
|
||
build: | ||
verbosity: detailed | ||
|
||
build_script: | ||
- gradle assemble | ||
- gradle build | ||
- gradle jar | ||
- gradle javadoc | ||
|
||
test_script: | ||
- gradle check | ||
|
||
cache: | ||
- C:\Users\appveyor\.gradle | ||
|
||
environment: | ||
matrix: | ||
- JAVA_HOME: C:\Program Files\Java\jdk1.8.0 | ||
- JAVA_HOME: C:\Program Files (x86)\Java\jdk1.8.0 | ||
|
||
matrix: | ||
fast_finish: true |