Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
devops
Manage
Activity
Members
Labels
Plan
Issues
4
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
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
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
osm
devops
Commits
94882af9
Commit
94882af9
authored
7 years ago
by
Mike Marchetti
Committed by
Gerrit Code Review
7 years ago
Browse files
Options
Downloads
Plain Diff
Merge "save artifacts on stage_4 success"
parents
c11f6a46
5a81a756
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
jenkins/ci-pipelines/ci_stage_3.groovy
+8
-6
8 additions, 6 deletions
jenkins/ci-pipelines/ci_stage_3.groovy
with
8 additions
and
6 deletions
jenkins/ci-pipelines/ci_stage_3.groovy
+
8
−
6
View file @
94882af9
...
...
@@ -34,6 +34,7 @@ properties([
booleanParam
(
defaultValue:
false
,
description:
''
,
name:
'SAVE_CONTAINER_ON_FAIL'
),
booleanParam
(
defaultValue:
false
,
description:
''
,
name:
'SAVE_CONTAINER_ON_PASS'
),
booleanParam
(
defaultValue:
false
,
description:
''
,
name:
'DO_STAGE_4'
),
booleanParam
(
defaultValue:
false
,
description:
''
,
name:
'SAVE_ARTIFACTS_OVERRIDE'
),
])
])
...
...
@@ -50,15 +51,12 @@ node("${params.NODE}") {
ci_helper
=
load
"jenkins/ci-pipelines/ci_helper.groovy"
def
upstream_main_job
=
params
.
UPSTREAM_SUFFIX
def
save_artifacts
=
false
// upstream jobs always use merged artifacts
upstream_main_job
+=
'-merge'
container_name_prefix
=
"osm-${tag_or_branch}"
container_name
=
"${container_name_prefix}"
if
(
JOB_NAME
.
contains
(
'merge'
)
)
{
save_artifacts
=
true
println
(
"merge job, saving artifacts"
)
container_name
+=
"-merge"
}
container_name
+=
"-${BUILD_NUMBER}"
...
...
@@ -194,6 +192,7 @@ node("${params.NODE}") {
junit
'*.xml'
}
stage_4_archive
=
false
if
(
params
.
DO_STAGE_4
)
{
stage
(
"stage_4"
)
{
def
downstream_params
=
[
...
...
@@ -201,13 +200,16 @@ node("${params.NODE}") {
string
(
name:
'NODE'
,
value:
NODE_NAME
.
split
()[
0
]),
]
stage_4_result
=
build
job:
"${params.DOWNSTREAM_STAGE_NAME}/${GERRIT_BRANCH}"
,
parameters:
downstream_params
,
propagate:
false
currentBuild
.
result
=
stage_4_result
.
result
if
(
stage_4_result
.
getResult
().
equals
(
'SUCCESS'
)
)
{
stage_4_archive
=
true
;
}
}
}
// save the artifacts
of this build if this is a merge job
if
(
save_artifacts
)
{
//
override to
save the artifacts
if
(
params
.
SAVE_ARTIFACTS_OVERRIDE
||
stage_4_archive
)
{
stage
(
"Archive"
)
{
sh
"echo ${container_name} > build_version.txt"
archiveArtifacts
artifacts:
"build_version.txt"
,
fingerprint:
true
...
...
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