diff options
author | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-07-20 00:17:19 +0200 |
---|---|---|
committer | Kamil Trzcinski <ayufan@ayufan.eu> | 2016-07-20 00:17:19 +0200 |
commit | 3c3e50f9cb5283cafc461ba9f7dd450b0f72fdb7 (patch) | |
tree | 70f69d952f81965e953fefab63b1068b22f5dddc | |
parent | e6cbd626845ee3436fdcf36b087fd1de894804a0 (diff) | |
download | gitlab-ce-3c3e50f9cb5283cafc461ba9f7dd450b0f72fdb7.tar.gz |
Update documentation
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | doc/ci/variables/README.md | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/CHANGELOG b/CHANGELOG index 0dc7e5b114f..4614cb4197a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -26,6 +26,7 @@ v 8.10.0 (unreleased) - Escape file extension when parsing search results !5141 (winniehell) - Apply the trusted_proxies config to the rack request object for use with rack_attack - Upgrade to Rails 4.2.7. !5236 + - Extend exposed environment variables for CI builds - Allow to pull code with deploy key from public projects - Add Sidekiq queue duration to transaction metrics. - Add a new column `artifacts_size` to table `ci_builds` !4964 diff --git a/doc/ci/variables/README.md b/doc/ci/variables/README.md index 6fb164e950b..420a3c831fa 100644 --- a/doc/ci/variables/README.md +++ b/doc/ci/variables/README.md @@ -71,6 +71,9 @@ export CI_PROJECT_PATH="gitlab-org/gitlab-ce" export CI_PROJECT_URL="https://gitlab.com/gitlab-org/gitlab-ce.git" export CI_REGISTRY="registry.gitlab.com" export CI_REGISTRY_IMAGE="registry.gitlab.com/gitlab-org/gitlab-ce" +export CI_RUNNER_ID="10" +export CI_RUNNER_DESCRIPTION="my runner" +export CI_RUNNER_TAGS="docker, linux" export CI_SERVER="yes" export CI_SERVER_NAME="GitLab" export CI_SERVER_REVISION="8.9.0" |