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
77688b27
Commit
77688b27
authored
Dec 11, 2018
by
Marceli Wac
Committed by
Achilleas Pipinellis
Dec 11, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch 35
parent
466a10a8
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
7 deletions
+9
-7
doc/ci/caching/index.md
doc/ci/caching/index.md
+9
-7
No files found.
doc/ci/caching/index.md
View file @
77688b27
...
@@ -29,8 +29,8 @@ needed to compile the project:
...
@@ -29,8 +29,8 @@ needed to compile the project:
Cache was designed to be used to speed up invocations of subsequent runs of a
Cache was designed to be used to speed up invocations of subsequent runs of a
given job, by keeping things like dependencies (e.g., npm packages, Go vendor
given job, by keeping things like dependencies (e.g., npm packages, Go vendor
packages, etc.) so they don't have to be re-fetched from the public internet.
packages, etc.) so they don't have to be re-fetched from the public internet.
While the cache can be abused to pass intermediate build results between
stages,
While the cache can be abused to pass intermediate build results between
there may be cases where artifacts are a better fit.
stages,
there may be cases where artifacts are a better fit.
-
`artifacts`
:
**Use for stage results that will be passed between stages.**
-
`artifacts`
:
**Use for stage results that will be passed between stages.**
Artifacts were designed to upload some compiled/generated bits of the build,
Artifacts were designed to upload some compiled/generated bits of the build,
and they can be fetched by any number of concurrent Runners. They are
and they can be fetched by any number of concurrent Runners. They are
...
@@ -39,11 +39,13 @@ needed to compile the project:
...
@@ -39,11 +39,13 @@ needed to compile the project:
directories relative to the build directory
**
and specifying paths which don't
directories relative to the build directory
**
and specifying paths which don't
comply to this rule trigger an unintuitive and illogical error message (an
comply to this rule trigger an unintuitive and illogical error message (an
enhancement is discussed at
enhancement is discussed at
https://gitlab.com/gitlab-org/gitlab-ce/issues/15530). Artifacts need to be
[
https://gitlab.com/gitlab-org/gitlab-ce/issues/15530
](
https://gitlab.com/gitlab-org/gitlab-ce/issues/15530
)
uploaded to the GitLab instance (not only the GitLab runner) before the next
). Artifacts need to be uploaded to the GitLab instance (not only the GitLab
stage job(s) can start, so you need to evaluate carefully whether your
runner) before the next stage job(s) can start, so you need to evaluate
bandwidth allows you to profit from parallelization with stages and shared
carefully whether your bandwidth allows you to profit from parallelization
artifacts before investing time in changes to the setup.
with stages and shared artifacts before investing time in changes to the
setup.
It's sometimes confusing because the name artifact sounds like something that
It's sometimes confusing because the name artifact sounds like something that
is only useful outside of the job, like for downloading a final image. But
is only useful outside of the job, like for downloading a final image. But
...
...
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