Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
centreon
centreon
Commits
fa79d774
Commit
fa79d774
authored
Apr 11, 2022
by
hcailloux
Committed by
Charles Gautier
Apr 11, 2022
Browse files
fix(build): Add missing parallel function call for docker stage (#10957)
parent
a997e0d0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Jenkinsfile
View file @
fa79d774
...
...
@@ -199,7 +199,7 @@ try {
stage
(
"$DELIVERY_STAGE"
)
{
node
{
checkoutCentreonBuild
(
buildBranch
)
checkoutCentreonBuild
(
buildBranch
)
sh
'rm -rf output'
unstash
'tar-sources'
unstash
'api-doc'
...
...
@@ -211,7 +211,7 @@ try {
error
(
'Delivery stage failure'
);
}
}
stage
(
"$DOCKER_STAGE"
)
{
def
parallelSteps
=
[:]
def
osBuilds
=
isStableBuild
()
?
[
'centos7'
,
'alma8'
]
:
[
'centos7'
]
...
...
@@ -230,6 +230,9 @@ try {
// sh "./centreon-build/jobs/web/${serie}/mon-web-bundle.sh centos8"
// }
//}
parallel
parallelSteps
if
((
currentBuild
.
result
?:
'SUCCESS'
)
!=
'SUCCESS'
)
{
error
(
'Bundle stage failure.'
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment