EpicBuckets/.gitlab-ci.yml

21 lines
541 B
YAML
Raw Normal View History

2018-10-25 06:26:09 +02:00
stages:
2019-02-06 05:32:15 +01:00
- build
variables:
name: "EpicBuckets"
2019-04-11 09:01:39 +02:00
path: "/builds/$CI_PROJECT_PATH"
2019-04-09 16:29:30 +02:00
version: "1.5.3"
2018-10-25 06:26:09 +02:00
build:
stage: build
2019-02-06 05:32:15 +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
- find $path/ -type f -name "*.yml" -print0 | xargs -0 sed -i -e s/maven-version-number/$version/g
- mvn clean package
2019-04-11 10:03:38 +02:00
- find $path/ -depth -path '*original*' -delete
2018-10-25 06:26:09 +02:00
artifacts:
2019-02-06 05:32:15 +01:00
name: $name-$version
2018-10-25 06:26:09 +02:00
paths:
2019-04-11 10:03:38 +02:00
- "$path/$name-Plugin/target/*.jar"