Commit 07a8cea2 authored by Stan Hu's avatar Stan Hu

Merge branch 'ce-to-ee-2018-09-26' into 'master'

CE upstream - 2018-09-26 15:21 UTC

See merge request gitlab-org/gitlab-ee!7502
parents b016feab bd7db99f
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
> [Introduced](https://gitlab.com/gitlab-org/gitlab-ce/issues/50144) in GitLab 11.3. > [Introduced](https://gitlab.com/gitlab-org/gitlab-ce/issues/50144) in GitLab 11.3.
Interactive web terminals give the user access to a terminal in GitLab for Interactive web terminals give the user access to a terminal in GitLab for
running one-of commands for their CI pipeline. running one-off commands for their CI pipeline.
NOTE: **Note:** NOTE: **Note:**
This is not available for the shared Runners on GitLab.com. This is not available for the shared Runners on GitLab.com.
......
...@@ -492,6 +492,7 @@ osx job: ...@@ -492,6 +492,7 @@ osx job:
`allow_failure` is used when you want to allow a job to fail without impacting `allow_failure` is used when you want to allow a job to fail without impacting
the rest of the CI suite. Failed jobs don't contribute to the commit status. the rest of the CI suite. Failed jobs don't contribute to the commit status.
The default value is `false`.
When enabled and the job fails, the pipeline will be successful/green for all When enabled and the job fails, the pipeline will be successful/green for all
intents and purposes, but a "CI build passed with warnings" message will be intents and purposes, but a "CI build passed with warnings" message will be
......
...@@ -151,6 +151,20 @@ For example: ...@@ -151,6 +151,20 @@ For example:
https://gitlab.com/gitlab-org/gitlab-ce/-/jobs/artifacts/master/browse?job=coverage https://gitlab.com/gitlab-org/gitlab-ce/-/jobs/artifacts/master/browse?job=coverage
``` ```
There is also a URL to specific files, including html files that
are shown in [GitLab Pages](../../../administration/pages/index.md):
```
https://example.com/<namespace>/<project>/-/jobs/artifacts/<ref>/file/<path>?job=<job_name>
```
For example, when a job `coverage` creates the artifact `htmlcov/index.html`,
you can access it at:
```
https://gitlab.com/gitlab-org/gitlab-ce/-/jobs/artifacts/master/file/htmlcov/index.html?job=coverage
```
The latest builds are also exposed in the UI in various places. Specifically, The latest builds are also exposed in the UI in various places. Specifically,
look for the download button in: look for the download button in:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment