.gitlab-ci.yml: Set up GitLab CI.

This commit is contained in:
Andreas Schildbach 2021-09-15 12:26:00 +02:00
parent 817a1cb54a
commit eb211b842c

11
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,11 @@
image: ubuntu:focal
before_script:
- apt-get update
- apt-get -y upgrade
- apt-get -y install openjdk-8-jdk
- apt-get -y install gradle
build:
script:
- gradle build --stacktrace