Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
9cc84837
Commit
9cc84837
authored
Mar 02, 2020
by
Rémy Coutable
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fallback to using 'CI_COMMIT_SHA' when pipeline is 'detached'
Signed-off-by:
Rémy Coutable
<
remy@rymai.me
>
parent
99860899
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
4 deletions
+14
-4
scripts/trigger-build
scripts/trigger-build
+14
-4
No files found.
scripts/trigger-build
View file @
9cc84837
...
...
@@ -16,6 +16,14 @@ module Trigger
%w[gitlab gitlab-ee]
.
include?
(
ENV
[
'CI_PROJECT_NAME'
])
end
def
self
.
non_empty_variable_value
(
variable
)
variable_value
=
ENV
[
variable
]
return
if
variable_value
.
nil?
||
variable_value
.
empty?
variable_value
end
class
Base
def
invoke!
(
post_comment:
false
,
downstream_job_name:
nil
)
pipeline_variables
=
variables
...
...
@@ -84,14 +92,15 @@ module Trigger
end
def
base_variables
# Use CI_MERGE_REQUEST_SOURCE_BRANCH_SHA for omnibus checkouts due to pipeline for merged results
# Use CI_MERGE_REQUEST_SOURCE_BRANCH_SHA for omnibus checkouts due to pipeline for merged results,
# and fallback to CI_COMMIT_SHA for the `detached` pipelines.
{
'GITLAB_REF_SLUG'
=>
ENV
[
'CI_COMMIT_TAG'
]
?
ENV
[
'CI_COMMIT_REF_NAME'
]
:
ENV
[
'CI_COMMIT_REF_SLUG'
],
'TRIGGERED_USER'
=>
ENV
[
'TRIGGERED_USER'
]
||
ENV
[
'GITLAB_USER_NAME'
],
'TRIGGER_SOURCE'
=>
ENV
[
'CI_JOB_URL'
],
'TOP_UPSTREAM_SOURCE_PROJECT'
=>
ENV
[
'CI_PROJECT_PATH'
],
'TOP_UPSTREAM_SOURCE_JOB'
=>
ENV
[
'CI_JOB_URL'
],
'TOP_UPSTREAM_SOURCE_SHA'
=>
ENV
[
'CI_MERGE_REQUEST_SOURCE_BRANCH
_SHA'
],
'TOP_UPSTREAM_SOURCE_SHA'
=>
Trigger
.
non_empty_variable_value
(
'CI_MERGE_REQUEST_SOURCE_BRANCH_SHA'
)
||
ENV
[
'CI_COMMIT
_SHA'
],
'TOP_UPSTREAM_SOURCE_REF'
=>
ENV
[
'CI_COMMIT_REF_NAME'
],
'TOP_UPSTREAM_MERGE_REQUEST_PROJECT_ID'
=>
ENV
[
'CI_MERGE_REQUEST_PROJECT_ID'
],
'TOP_UPSTREAM_MERGE_REQUEST_IID'
=>
ENV
[
'CI_MERGE_REQUEST_IID'
]
...
...
@@ -127,8 +136,9 @@ module Trigger
def
extra_variables
# Use CI_MERGE_REQUEST_SOURCE_BRANCH_SHA for omnibus checkouts due to pipeline for merged results
# and fallback to CI_COMMIT_SHA for the `detached` pipelines.
{
'GITLAB_VERSION'
=>
ENV
[
'CI_MERGE_REQUEST_SOURCE_BRANCH
_SHA'
],
'GITLAB_VERSION'
=>
Trigger
.
non_empty_variable_value
(
'CI_MERGE_REQUEST_SOURCE_BRANCH_SHA'
)
||
ENV
[
'CI_COMMIT
_SHA'
],
'ALTERNATIVE_SOURCES'
=>
'true'
,
'ee'
=>
Trigger
.
ee?
?
'true'
:
'false'
,
'QA_BRANCH'
=>
ENV
[
'QA_BRANCH'
]
||
'master'
...
...
@@ -194,7 +204,7 @@ module Trigger
Gitlab
.
create_commit_comment
(
ENV
[
'CI_PROJECT_PATH'
],
ENV
[
'CI_MERGE_REQUEST_SOURCE_BRANCH
_SHA'
],
Trigger
.
non_empty_variable_value
(
'CI_MERGE_REQUEST_SOURCE_BRANCH_SHA'
)
||
ENV
[
'CI_COMMIT
_SHA'
],
"The [`
#{
ENV
[
'CI_JOB_NAME'
]
}
`](
#{
ENV
[
'CI_JOB_URL'
]
}
) job from pipeline
#{
ENV
[
'CI_PIPELINE_URL'
]
}
triggered
#{
downstream_pipeline
.
web_url
}
downstream."
)
rescue
Gitlab
::
Error
::
Error
=>
error
...
...
Write
Preview
Markdown
is supported
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