Inceptum/.gitlab-ci.yml

31 lines
728 B
YAML
Raw Normal View History

2021-10-28 23:32:57 +02:00
image: gradle:jdk16
variables:
GRADLE_OPTS: "-Dorg.gradle.daemon=false"
before_script:
- export GRADLE_USER_HOME=`pwd`/.gradle
build_test:
stage: deploy
script:
- gradle --build-cache build -Pflavor=fat
- gradle --build-cache build -Pflavor=windows
- gradle --build-cache build -Pflavor=linux
- gradle --build-cache build -Pflavor=macos
- cp build/libs/*-*-*.jar ./
- cp build/libs/*.exe ./
- for f in *-*-*.jar; do mv "$f" "latest-${f##*-}";done
- mv latest-fat.jar latest.jar
- mv *-*.exe latest.exe
2021-10-28 23:32:57 +02:00
artifacts:
paths:
- build/libs
- latest.jar
- latest.exe
- latest-linux.jar
- latest-macos.jar
- latest-windows.jar
2021-10-28 23:32:57 +02:00
only:
- master