EpicHoppers/.gitlab-ci.yml

22 lines
529 B
YAML
Raw Normal View History

2018-10-18 22:49:26 +02:00
stages:
- build
2018-11-15 22:53:39 +01:00
variables:
name: "EpicHoppers"
path: "/builds/Songoda/$name"
2018-11-17 11:11:26 +01:00
version: "3.1.35"
2018-11-15 22:53:39 +01:00
2018-10-18 22:49:26 +02:00
build:
stage: build
2018-11-15 22:53:39 +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
- mvn clean package
- find $path/$name-Plugin/ -depth -path '*original*' -delete
- mv -v $path/$name-Plugin/target/*.jar $path
2018-10-18 22:49:26 +02:00
artifacts:
2018-11-15 22:53:39 +01:00
name: $name-$version
2018-10-18 22:49:26 +02:00
paths:
2018-11-15 22:53:39 +01:00
- "$path/*.jar"
- "$path/Read_this_before_your_first_use.txt"