UltimateModeration/.gitlab-ci.yml

22 lines
559 B
YAML
Raw Normal View History

2019-03-07 05:36:54 +01:00
stages:
2019-04-11 10:49:35 +02:00
- build
2019-03-07 05:36:54 +01:00
variables:
2019-04-11 10:46:15 +02:00
name: "UltimateModeration"
path: "/builds/$CI_PROJECT_PATH"
2019-10-19 19:29:57 +02:00
version: "1.2"
2019-03-07 05:36:54 +01:00
build:
stage: build
image: maven:3.5.3-jdk-8
script:
2019-04-11 09:46:17 +02:00
- 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
2019-03-07 05:36:54 +01:00
- mvn clean package
- find $path/ -depth -path '*original*' -delete
2019-04-11 10:31:14 +02:00
- mv $path/target/*.jar $path/
2019-03-07 05:36:54 +01:00
artifacts:
2019-04-11 09:46:17 +02:00
name: $name-$version
2019-03-07 05:36:54 +01:00
paths:
2019-04-11 10:46:15 +02:00
- "$path/*.jar"