.gitlab-ci.yml: Add basic configuration for GitLab continuous integration.

This commit is contained in:
Sean Gilligan 2019-07-09 15:05:00 -07:00 committed by Andreas Schildbach
parent cee5264ab9
commit a8be47b2d6

15
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,15 @@
image: ubuntu:bionic
variables:
GRADLE_VERSION: "4.10.3"
before_script:
- apt-get update
- apt-get -y upgrade
- apt-get -y install openjdk-11-jdk gradle
- gradle wrapper --gradle-version=$GRADLE_VERSION --stacktrace
build:
script:
- java -version
- ./gradlew build --stacktrace