BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
30011bdc
Commit
30011bdc
authored
Mar 09, 2018
by
Sean McGivern
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'docs/trigger-script' into 'master'
Wait for the pipeline to start before canceling it See merge request gitlab-org/gitlab-ce!17638
parents
475dd106
471728f8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
5 deletions
+14
-5
trigger-build-docs
scripts/trigger-build-docs
+14
-5
No files found.
scripts/trigger-build-docs
View file @
30011bdc
...
...
@@ -24,8 +24,8 @@ def docs_branch
# The maximum string length a file can have on a filesystem (ext4)
# is 63 characters. Let's use something smaller to be 100% sure.
max
=
42
# Prefix the remote branch with
'preview-' in order to avoid
# name conflicts in the rare case the branch name already
# Prefix the remote branch with
the slug of the project in order
#
to avoid
name conflicts in the rare case the branch name already
# exists in the docs repo and truncate to max length.
"
#{
slug
}
-
#{
ENV
[
"CI_COMMIT_REF_SLUG"
]
}
"
[
0
...
max
]
end
...
...
@@ -41,12 +41,21 @@ def create_remote_branch
Gitlab
.
create_branch
(
GITLAB_DOCS_REPO
,
docs_branch
,
'master'
)
puts
"=> Remote branch '
#{
docs_branch
}
' created"
# Get the latest pipeline ID which is also the first
pipeline_id
=
Gitlab
.
pipelines
(
GITLAB_DOCS_REPO
,
{
ref:
docs_branch
}).
last
.
id
pipelines
=
nil
# Wait until the pipeline is started
loop
do
sleep
1
puts
"=> Waiting for pipeline to start..."
pipelines
=
Gitlab
.
pipelines
(
GITLAB_DOCS_REPO
,
{
ref:
docs_branch
})
break
if
pipelines
.
any?
end
# Get the first pipeline ID which should be the only one for the branch
pipeline_id
=
pipelines
.
first
.
id
# Cancel the pipeline
Gitlab
.
cancel_pipeline
(
GITLAB_DOCS_REPO
,
pipeline_id
)
puts
"=> Canceled uneeded pipeline
#{
pipeline_id
}
for '
#{
docs_branch
}
'"
rescue
Gitlab
::
Error
::
BadRequest
puts
"=> Remote branch '
#{
docs_branch
}
' already exists"
end
...
...
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