mirror of
https://gitlab.com/oeffi/public-transport-enabler.git
synced 2025-07-06 15:18:49 +00:00

We don't need the absolute latest versions. The Docker images are updated regularly anyway.
16 lines
288 B
YAML
16 lines
288 B
YAML
image: ubuntu:focal
|
|
|
|
before_script:
|
|
- apt-get update
|
|
- apt-get -y install ${JDK_PACKAGE}
|
|
- apt-get -y install gradle
|
|
|
|
after_script:
|
|
- gradle --version
|
|
|
|
build:
|
|
parallel:
|
|
matrix:
|
|
- JDK_PACKAGE: [ openjdk-8-jdk, openjdk-11-jdk ]
|
|
script:
|
|
- gradle build --stacktrace
|