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
681dbeca
Commit
681dbeca
authored
Mar 27, 2018
by
Achilleas Pipinellis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Provide clarification on mirrored repositories for pipelines
parent
1aec54db
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
16 additions
and
2 deletions
+16
-2
doc/ci/pipelines.md
doc/ci/pipelines.md
+6
-2
doc/ci/quick_start/README.md
doc/ci/quick_start/README.md
+5
-0
doc/ci/yaml/README.md
doc/ci/yaml/README.md
+5
-0
No files found.
doc/ci/pipelines.md
View file @
681dbeca
...
...
@@ -2,6 +2,11 @@
> Introduced in GitLab 8.8.
NOTE:
**Note:**
If you have a
[
mirrored repository where GitLab pulls from
](
../workflow/repository_mirroring.md#pulling-from-a-remote-repository
)
,
you may need to enable pipeline triggering in your project's
**Settings > Repository > Pull from a remote repository > Trigger pipelines for mirror updates**
.
## Pipelines
A pipeline is a group of
[
jobs
][]
that get executed in
[
stages
][]
(batches).
...
...
@@ -121,9 +126,8 @@ The basic requirements is that there are two numbers separated with one of
the following (you can even use them interchangeably):
-
a space
-
a
forward
slash (
`/`
)
-
a slash (
`/`
)
-
a colon (
`:`
)
-
a dot (
`.`
)
>**Note:**
More specifically,
[
it uses
][
regexp
]
this regular expression:
`\d+[\s:\/\\]+\d+\s*`
.
...
...
doc/ci/quick_start/README.md
View file @
681dbeca
...
...
@@ -126,6 +126,11 @@ git push origin master
Now if you go to the
**Pipelines**
page you will see that the pipeline is
pending.
NOTE:
**Note:**
If you have a
[
mirrored repository where GitLab pulls from
](
../../workflow/repository_mirroring.md#pulling-from-a-remote-repository
)
,
you may need to enable pipeline triggering in your project's
**Settings > Repository > Pull from a remote repository > Trigger pipelines for mirror updates**
.
You can also go to the
**Commits**
page and notice the little pause icon next
to the commit SHA.
...
...
doc/ci/yaml/README.md
View file @
681dbeca
...
...
@@ -10,6 +10,11 @@ of your repository and contains definitions of how your project should be built.
If you want a quick introduction to GitLab CI, follow our
[
quick start guide
](
../quick_start/README.md
)
.
NOTE:
**Note:**
If you have a
[
mirrored repository where GitLab pulls from
](
../../workflow/repository_mirroring.md#pulling-from-a-remote-repository
)
,
you may need to enable pipeline triggering in your project's
**Settings > Repository > Pull from a remote repository > Trigger pipelines for mirror updates**
.
## Jobs
The YAML file defines a set of jobs with constraints stating when they should
...
...
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