Skip to content
Snippets Groups Projects
Commit a24a86a0 authored by Reiner Jung's avatar Reiner Jung
Browse files

Update build pipeline

parent 732016ca
No related branches found
No related tags found
No related merge requests found
...@@ -2,42 +2,43 @@ image: prefec2/jdk11-maven-363-gradle671 ...@@ -2,42 +2,43 @@ image: prefec2/jdk11-maven-363-gradle671
variables: variables:
GIT_CLEAN_FLAGS: none GIT_CLEAN_FLAGS: none
MAVEN_OPTS: "-Dmaven.repo.local=.m2/repository"
cache: cache:
paths: paths:
stages: stages:
- build - compile
- check
- test - test
- package - package
- check
- eclipse-deploy
- cmd-deploy
- vi-deploy
- emacs-deploy
- jupyter-deploy
build: compile:
tags: tags:
- exec-docker - exec-docker
stage: build stage: compile
script: script:
- ./gradlew build - ./gradlew compileJava
check: check:
tags: tags:
- exec-docker - exec-docker
stage: check stage: check
script: script:
- ./gradlew checl - ./gradlew -x test check
test:
tags:
- exec-docker
stage: test
script:
- ./gradlew test
package: package:
tags: tags:
- exec-docker - exec-docker
stage: package stage: package
script: script:
- ./gradlew distribute - ./gradlew build
artifacts: artifacts:
paths: paths:
- ./tools/create-architecture-model/build/distributions/ - ./tools/create-architecture-model/build/distributions/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment