EpicFarming/.gitlab-ci.yml

23 lines
629 B
YAML
Raw Normal View History

2018-10-18 20:52:09 +02:00
stages:
- build
2018-11-16 00:48:53 +01:00
variables:
name: "EpicFarming"
path: "/builds/Songoda/$name"
2019-02-04 04:18:55 +01:00
version: "2.1"
2018-11-16 00:48:53 +01:00
2018-10-18 20:52:09 +02:00
build:
stage: build
2018-11-16 00:48:53 +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
2018-11-16 00:48:53 +01:00
- mvn clean package
- find $path/$name-Plugin/ -depth -path '*original*' -delete
- mv -v $path/$name-Plugin/target/*.jar $path
2018-10-18 20:52:09 +02:00
artifacts:
2018-11-16 00:48:53 +01:00
name: $name-$version
2018-10-18 20:52:09 +02:00
paths:
2018-11-16 00:48:53 +01:00
- "$path/*.jar"
- "$path/Read_this_before_your_first_use.txt"