diff options
author | Olliver Schinagl <oliver@schinagl.nl> | 2019-04-02 19:21:46 +0200 |
---|---|---|
committer | Olliver Schinagl <oliver@schinagl.nl> | 2019-04-02 19:21:46 +0200 |
commit | 3a9e3aa9ef905fd9a2433e79a3c0f2a0954aaeec (patch) | |
tree | b730f5736ef4d9d89b43990f1de7e945d13b65db /doc | |
parent | d80fbb73ee329f197c3a8775b79047937bea47d2 (diff) | |
download | gitlab-ce-3a9e3aa9ef905fd9a2433e79a3c0f2a0954aaeec.tar.gz |
Add missing 'export' example for CI_API_V4_API_URL
In issue #54621 a new variable CI_API_V4_API_URL was introduced, but
some of the documentation was omitted. Having an example output is
always nice.
Signed-off-by: Olliver Schinagl <oliver@schinagl.nl>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ci/variables/README.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/ci/variables/README.md b/doc/ci/variables/README.md index 12b027e7d79..e4d826e5919 100644 --- a/doc/ci/variables/README.md +++ b/doc/ci/variables/README.md @@ -228,6 +228,8 @@ $'\''git'\'' "checkout" "-f" "-q" "dd648b2e48ce6518303b0bb580b2ee32fadaf045" Running on runner-8a2f473d-project-1796893-concurrent-0 via runner-8a2f473d-machine-1480971377-317a7d0f-digital-ocean-4gb... ++ export CI=true ++ CI=true +++ export CI_API_V4_API_URL=https://example.com:3000/api/v4 +++ CI_API_V4_API_URL=https://example.com:3000/api/v4 ++ export CI_DEBUG_TRACE=false ++ CI_DEBUG_TRACE=false ++ export CI_COMMIT_SHA=dd648b2e48ce6518303b0bb580b2ee32fadaf045 @@ -266,6 +268,8 @@ Running on runner-8a2f473d-project-1796893-concurrent-0 via runner-8a2f473d-mach ++ GITLAB_CI=true ++ export CI=true ++ CI=true +++ export CI_API_V4_API_URL=https://example.com:3000/api/v4 +++ CI_API_V4_API_URL=https://example.com:3000/api/v4 ++ export GITLAB_CI=true ++ GITLAB_CI=true ++ export CI_JOB_ID=7046507 |