UltimateKits/.gitlab-ci.yml

23 lines
532 B
YAML
Raw Normal View History

2018-11-16 02:29:28 +01:00
stages:
- build
variables:
name: "UltimateKits"
2018-11-16 02:35:23 +01:00
suffex: "Legacy"
2018-11-16 02:29:28 +01:00
path: "/builds/Songoda/$name"
version: "2.0.4"
build:
stage: build
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
- mvn clean package
- find $path/ -depth -path '*original*' -delete
- mv -v $path/target/*.jar $path
artifacts:
2018-11-16 02:35:23 +01:00
name: $name-$suffex-$version
2018-11-16 02:29:28 +01:00
paths:
- "$path/*.jar"
- "$path/Read_this_before_your_first_use.txt"