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

Separate out build options from general ones

parent 50366971
No related branches found
No related tags found
1 merge request!3Add build pipeline
......@@ -9,7 +9,8 @@ variables:
# for submodules: https://gitlab.com/gitlab-org/gitlab-runner/issues/3011
GIT_SUBMODULE_STRATEGY: none
MAVEN_CLI_OPTS: "--batch-mode"
MAVEN_OPTS: "-Dmaven.repo.local=.m2/repository -Dbuild.tooling=true -Dbuild.af3=true -Dbuild.emf=true"
MAVEN_OPTS: "-Dmaven.repo.local=.m2/repository"
MAVEN_BUILD_OPTS: " -Dbuild.tooling=true -Dbuild.af3=true -Dbuild.emf=true"
before_script:
......@@ -30,7 +31,7 @@ build:
# - git submodule sync --recursive
- git submodule update --remote --recursive --init
script:
- mvn $MAVEN_CLI_OPTS verify
- mvn $MAVEN_CLI_OPTS $MAVEN_BUILD_OPTS verify
test:
stage: 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