UltimateStacker/.gitlab-ci.yml

21 lines
561 B
YAML
Raw Normal View History

2018-11-06 05:56:47 +01:00
stages:
- build
2018-11-16 03:02:47 +01:00
variables:
name: "UltimateStacker"
2019-04-11 09:01:10 +02:00
path: "/builds/$CI_PROJECT_PATH"
2019-06-23 03:13:09 +02:00
version: "1.5.2"
2018-11-16 03:02:47 +01:00
2018-11-06 05:56:47 +01:00
build:
stage: build
2018-11-16 03:02:47 +01:00
image: maven:3.5.3-jdk-8
script:
- find $path/ -type f -name "*.xml" -print0 | xargs -0 sed -i -e s/maven-version-number/$version/g
2018-11-22 22:16:01 +01:00
- find $path/ -type f -name "*.yml" -print0 | xargs -0 sed -i -e s/maven-version-number/$version/g
2018-11-16 03:02:47 +01:00
- mvn clean package
- find $path/ -depth -path '*original*' -delete
- mv -v $path/target/*.jar $path
2018-11-06 05:56:47 +01:00
artifacts:
2019-05-24 01:23:51 +02:00
name: $name-$version
2018-11-06 05:56:47 +01:00
paths:
2019-06-17 23:48:34 +02:00
- "$path/*.jar"