Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
evoal-core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Terraform modules
Monitor
Service Desk
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
evoal
source
evoal-core
Commits
33719d85
Commit
33719d85
authored
1 year ago
by
Bernhard Johannes Berger
Browse files
Options
Downloads
Patches
Plain Diff
Dependency cleanup.
parent
106736ab
No related branches found
No related tags found
No related merge requests found
Pipeline
#304579
failed
1 year ago
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+17
-11
17 additions, 11 deletions
.gitlab-ci.yml
with
17 additions
and
11 deletions
.gitlab-ci.yml
+
17
−
11
View file @
33719d85
...
...
@@ -52,9 +52,17 @@ dsl:compile:
image
:
$ECLIPSE_IMAGE
script
:
-
mvn $MAVEN_CLI_OPTS -f $LANGUAGES_POM -Dbranch=$CI_COMMIT_REF_NAME -pl "!de.evoal.languages:de.evoal.languages.releng.site" compile
artifacts
:
untracked
:
false
when
:
on_success
expire_in
:
"
30
days"
paths
:
-
src/languages/*/target
dsl:unit
:
stage
:
Domain Specific Languages
dependencies
:
-
"
dsl:compile"
tags
:
-
docker
image
:
$ECLIPSE_IMAGE
...
...
@@ -67,7 +75,6 @@ dsl:deploy:
-
"
dsl:compile"
needs
:
-
"
dsl:unit"
-
"
dsl:compile"
tags
:
-
docker
image
:
$ECLIPSE_IMAGE
...
...
@@ -85,17 +92,19 @@ dsl:deploy:
## Remaining compile steps
evoal:compile
:
stage
:
EvoAl
needs
:
-
"
dsl:deploy"
tags
:
-
docker
image
:
$EVOAL_IMAGE
script
:
-
mvn $MAVEN_CLI_OPTS -f $EVOAL_POM -Dbranch=$CI_COMMIT_REF_NAME -DskipTests=true flatten:flatten
compil
e
-
mvn $MAVEN_CLI_OPTS -f $EVOAL_POM -Dbranch=$CI_COMMIT_REF_NAME -DskipTests=true flatten:flatten
packag
e
artifacts
:
untracked
:
false
when
:
on_success
expire_in
:
"
30
days"
paths
:
-
src/core/*/target
/*
-
src/core/*
*
/target
-
src/languages/de.evoal.languages.releng.site/target/de.evoal.languages.releng.site-*.zip
...
...
@@ -103,18 +112,17 @@ evoal:compile:
## Remaining unit tests
evoal:unit
:
stage
:
EvoAl
dependencies
:
-
"
evoal:compile"
-
"
dsl:deploy"
tags
:
-
docker
image
:
$EVOAL_IMAGE
script
:
-
mvn $MAVEN_CLI_OPTS -f $EVOAL_POM -Dbranch=$CI_COMMIT_REF_NAME -DskipTests package
-
ci/create-release.sh
-
ci/regression-coverage.sh
-
mvn $MAVEN_CLI_OPTS -f $EVOAL_POM -Dbranch=$CI_COMMIT_REF_NAME -Pjacoco verify
-
cat src/evoal/core/de.evoal.releng.jacoco/target/site/jacoco-aggregate/index.html | grep -o '<tfoot>.*</tfoot>'
needs
:
[
"
evoal:compile"
,
"
dsl:deploy"
]
dependencies
:
-
evoal:compile
coverage
:
/Total.*?([0-9]{1,3})%/
artifacts
:
when
:
always
...
...
@@ -126,15 +134,14 @@ evoal:unit:
evoal:coverage
:
stage
:
EvoAl
dependencies
:
-
evoal:unit
tags
:
-
docker
image
:
haynes/jacoco2cobertura:1.0.7
script
:
-
jacoco_paths=`find src -path "**/src/main/java" -type d | sed -e 's@^@'"$CI_PROJECT_DIR"'/@'`
-
python /opt/cover2cover.py src/evoal/core/de.evoal.releng.jacoco/target/site/jacoco-aggregate/jacoco.xml $jacoco_paths > src/evoal/core/de.evoal.releng.jacoco/target/site/coverage.xml
needs
:
[
"
evoal:unit"
]
dependencies
:
-
evoal:unit
artifacts
:
reports
:
coverage_report
:
...
...
@@ -168,7 +175,6 @@ evoal:deploy:
dependencies
:
-
"
evoal:compile"
needs
:
-
"
evoal:compile"
-
"
evoal:unit"
tags
:
-
docker
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment