jadx/.gitlab-ci.yml
2024-07-19 00:19:43 +03:00

25 lines
415 B
YAML

variables:
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
TERM: "dumb"
before_script:
- chmod +x gradlew
stages:
- test
java-11:
stage: test
image: eclipse-temurin:11
script: ./gradlew clean build dist distWin
java-17:
stage: test
image: eclipse-temurin:17
script: ./gradlew clean build dist distWin
java-21:
stage: test
image: eclipse-temurin:21
script: ./gradlew clean build dist distWin