Added CIs.

This commit is contained in:
Erik C. Thauvin 2021-05-08 16:23:12 -07:00
parent 3517acf544
commit 61e647264b
2 changed files with 79 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:
- openjdk11
- openjdk15
before_install:
- chmod +x gradlew
after_success:
- |
if [ "${TRAVIS_TEST_RESULT}" == 0 ] && [ "$TRAVIS_JDK_VERSION" == "openjdk15" ]; then
./gradlew sonarqube
fi