August 2019
Beginner
608 pages
16h 7m
English
The GitLab CI/CD components can build your software, and that results in build artifacts. They are sent back from the GitLab runners to the GitLab server. You can download them through the web UI. These artifacts are, by default, stored on the GitLab server in shared/artifacts. As the files can become quite large and numerous, it is also possible to store these artifacts somewhere else, where the GitLab server can fetch them when needed or redirect the request. You can set up object storage with Amazon S3, for example, to be used as a big bucket to store files.
By default GitLab it stores artifacts in the local shared path shared/artifact on the server where GitLab is installed:
artifacts: enabled: true path: shared/artifacts ...
Read now
Unlock full access