Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
processor-manager
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
OZG-Cloud
app
processor-manager
Compare revisions
57ec0b9db2bf613ff6e7f98559299b4a2bd23128 to cb19ef6f25cdf87633703d9701de7697565105a4
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
ozg-cloud/app/processor-manager
Select target project
No results found
cb19ef6f25cdf87633703d9701de7697565105a4
Select Git revision
Branches
OZG-7679_dateien_uebertragen
OZG-7689_erweitern
main
release
Tags
0.0.1
0.1.0
0.2.0
0.3.0
0.4.0
0.4.1
0.5.0
0.6.0
0.7.0
0.8.0
0.9.0
15 results
Swap
Target
ozg-cloud/app/processor-manager
Select target project
ozg-cloud/app/processor-manager
1 result
57ec0b9db2bf613ff6e7f98559299b4a2bd23128
Select Git revision
Branches
OZG-7679_dateien_uebertragen
OZG-7689_erweitern
main
release
Tags
0.0.1
0.1.0
0.2.0
0.3.0
0.4.0
0.4.1
0.5.0
0.6.0
0.7.0
0.8.0
0.9.0
15 results
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
ozg-7493 add send failure message
· 82988500
Bastian
authored
2 months ago
82988500
Merge branch 'OZG-7493-add-matrix-notification' into 'main'
· cb19ef6f
Bastian Heppener
authored
2 months ago
ozg-7493 add send failure message See merge request
!2
cb19ef6f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
Jenkinsfile
+9
-1
9 additions, 1 deletion
Jenkinsfile
with
9 additions
and
1 deletion
Jenkinsfile
View file @
cb19ef6f
...
@@ -21,6 +21,9 @@
...
@@ -21,6 +21,9 @@
* Die sprachspezifischen Genehmigungen und Beschränkungen
* Die sprachspezifischen Genehmigungen und Beschränkungen
* unter der Lizenz sind dem Lizenztext zu entnehmen.
* unter der Lizenz sind dem Lizenztext zu entnehmen.
*/
*/
@Library
(
'ozgcloud-libs'
)
_
pipeline
{
pipeline
{
agent
{
agent
{
node
{
node
{
...
@@ -29,7 +32,7 @@ pipeline {
...
@@ -29,7 +32,7 @@ pipeline {
}
}
environment
{
environment
{
JENKINS_URL
=
"https://jenkins.infra.ozg-cloud.systems/job/c
odeSH
_
processor-manager
/job/${env.BRANCH_NAME}/${env.BUILD_NUMBER}/
"
PIPELINE_NAME
=
"C
ode
-
SH
:
processor-manager"
RELEASE_REGEX
=
/\d+.\d+.\d+/
RELEASE_REGEX
=
/\d+.\d+.\d+/
SNAPSHOT_REGEX
=
/\d+.\d+.\d+-SNAPSHOT/
SNAPSHOT_REGEX
=
/\d+.\d+.\d+-SNAPSHOT/
FAILED_STAGE
=
""
FAILED_STAGE
=
""
...
@@ -129,6 +132,11 @@ pipeline {
...
@@ -129,6 +132,11 @@ pipeline {
always
{
always
{
junit
testResults:
'**/target/surefire-reports/*.xml'
,
skipPublishingChecks:
true
junit
testResults:
'**/target/surefire-reports/*.xml'
,
skipPublishingChecks:
true
}
}
failure
{
script
{
sendMatrixMessage
.
sendFailureMessage
(
FAILED_STAGE
)
}
}
}
}
}
}
...
...
This diff is collapsed.
Click to expand it.