pixlyzer/.gitlab-ci.yml
Moritz Zwerger 276401b670
fix ci
2025-01-01 20:32:57 +01:00

65 lines
1.4 KiB
YAML

variables:
MAVEN_OPTS: "-Dmaven.repo.local=$CI_PROJECT_DIR/.m2/repository"
MAVEN_CLI_OPTS: "--errors --fail-at-end --show-version"
image: gitlab-registry.bixilon.de:443/bixilon/pix-lyzer-docker-container
cache:
paths:
- .m2/repository
- wrapper/data/data
- wrapper/libraries
- target/
stages:
- build
- latest
- 1.19.3
- 1.18.2
- 1.17.1
- 1.16.5
- 1.15.2
- 1.14.4
build:
stage: build
script:
- "java -version"
- "cd wrapper && python3 PixLyzer.py --only-version=23w41a --dont-compile --only-map"
- 'cd ../ && mvn clean $MAVEN_CLI_OPTS verify'
latest:
stage: latest
script:
- "cd wrapper && python3 PixLyzer.py --only-version=23w04a --dont-compile"
1.19.3:
stage: 1.19.3
script:
- "cd wrapper && python3 PixLyzer.py --only-version=1.19.3 --dont-compile"
1.18.2:
stage: 1.18.2
script:
- "cd wrapper && python3 PixLyzer.py --only-version=1.18.2 --dont-compile"
1.17.1:
stage: 1.17.1
script:
- "cd wrapper && python3 PixLyzer.py --only-version=1.17.1 --dont-compile"
1.16.5:
stage: 1.16.5
script:
- "cd wrapper && python3 PixLyzer.py --only-version=1.16.5 --dont-compile"
1.15.2:
stage: 1.15.2
script:
- "cd wrapper && python3 PixLyzer.py --only-version=1.15.2 --dont-compile"
1.14.4:
stage: 1.14.4
script:
- "cd wrapper && python3 PixLyzer.py --only-version=1.14.4 --dont-compile"