diff options
author | Achilleas Pipinellis <axilleas@axilleas.me> | 2015-12-19 08:46:38 +0000 |
---|---|---|
committer | Achilleas Pipinellis <axilleas@axilleas.me> | 2015-12-19 08:46:38 +0000 |
commit | 4b4cbf0ce4925e22a635e4432e7ac8602199fa5b (patch) | |
tree | 00a87df0380e27e55540fb470a47a6e1c8d91cae | |
parent | 3ee33b54bf99f77af4d6ef8f31dde48cd42e6f0b (diff) | |
parent | d2b5ef1c1e1011b5ccc8a3142b0147ce29632963 (diff) | |
download | gitlab-ce-4b4cbf0ce4925e22a635e4432e7ac8602199fa5b.tar.gz |
Merge branch 'removeNonDefinedVariableFromCIDoc' into 'master'
Remove CI_BUILD_BEFORE_SHA from CI documentation
As pointed in #3210, the environment variable isn't usable any more.
See merge request !2118
-rw-r--r-- | doc/ci/variables/README.md | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/doc/ci/variables/README.md b/doc/ci/variables/README.md index 022afb70042..b99ea25a3fe 100644 --- a/doc/ci/variables/README.md +++ b/doc/ci/variables/README.md @@ -27,7 +27,6 @@ The API_TOKEN will take the Secure Variable value: `SECURE`. | **CI_BUILD_TAG** | 0.5 | The commit tag name. Present only when building tags. | | **CI_BUILD_NAME** | 0.5 | The name of the build as defined in `.gitlab-ci.yml` | | **CI_BUILD_STAGE** | 0.5 | The name of the stage as defined in `.gitlab-ci.yml` | -| **CI_BUILD_BEFORE_SHA** | all | The first commit that were included in push request | | **CI_BUILD_REF_NAME** | all | The branch or tag name for which project is built | | **CI_BUILD_ID** | all | The unique id of the current build that GitLab CI uses internally | | **CI_BUILD_REPO** | all | The URL to clone the Git repository | @@ -40,7 +39,6 @@ The API_TOKEN will take the Secure Variable value: `SECURE`. Example values: ```bash -export CI_BUILD_BEFORE_SHA="9df57456fa9de2a6d335ca5edf9750ed812b9df0" export CI_BUILD_ID="50" export CI_BUILD_REF="1ecfd275763eff1d6b4844ea3168962458c9f27a" export CI_BUILD_REF_NAME="master" |