Skip to content
Snippets Groups Projects
Commit a40ed1ce authored by Alexander Diewald's avatar Alexander Diewald
Browse files

Integrate a basic gitlab-CI specification for maven builds

parent 7dbb6031
No related branches found
No related tags found
1 merge request!3Add build pipeline
image: maven:latest
stages:
- build
- test
variables:
GIT_SUBMODULE_STRATEGY: recursive
MAVEN_CLI_OPTS: "--batch-mode"
MAVEN_OPTS: "-Dmaven.repo.local=.m2/repository -Dbuild.tooling=true -Dbuild.af3=true -Dbuild.emf=true"
cache:
paths:
- .m2/repository/
- target/
build:
stage: build
script:
- mvn $MAVEN_CLI_OPTS verify
test:
stage: test
script:
- mvn $MAVEN_CLI_OPTS test
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