Added TravisCI and CircleCI configurations.

This commit is contained in:
Erik C. Thauvin 2020-07-23 22:52:25 -07:00
parent dba6a12859
commit 0ed07aaa40
2 changed files with 80 additions and 0 deletions

26
.travis.yml Normal file
View file

@ -0,0 +1,26 @@
language: java
dist: trusty
env:
global:
- CI=true
#install:
# - git fetch --unshallow --tags
addons:
sonarcloud:
organization: "ethauvin-github"
jdk:
- oraclejdk8
- openjdk14
before_install:
- chmod +x gradlew
after_success:
- |
if [ "${TRAVIS_TEST_RESULT}" == 0 ] && [ "$TRAVIS_JDK_VERSION" == "openjdk14" ]; then
./gradlew sonarqube
fi