summaryrefslogtreecommitdiff
path: root/doc/release/howto_rc1.md
diff options
context:
space:
mode:
authorMarin Jankovski <maxlazio@gmail.com>2015-02-27 10:38:15 -0800
committerMarin Jankovski <maxlazio@gmail.com>2015-02-27 10:38:15 -0800
commit3e6b342a1ab6702d2f897ecc0f259d3876e65ade (patch)
treec3dd1186b54206cae435cc6daef7498103ba8ea7 /doc/release/howto_rc1.md
parentada7d0f393efb1a96fdfe626087f50ac5f5f6664 (diff)
downloadgitlab-ce-3e6b342a1ab6702d2f897ecc0f259d3876e65ade.tar.gz
Remove CI sections related to release tool, update steps in monthly and patch release documentation.
Diffstat (limited to 'doc/release/howto_rc1.md')
-rw-r--r--doc/release/howto_rc1.md25
1 files changed, 3 insertions, 22 deletions
diff --git a/doc/release/howto_rc1.md b/doc/release/howto_rc1.md
index c4156d25d5f..07c703142d4 100644
--- a/doc/release/howto_rc1.md
+++ b/doc/release/howto_rc1.md
@@ -27,7 +27,7 @@ Make sure the code quality indicators are green / good.
- [![Coverage Status](https://coveralls.io/repos/gitlabhq/gitlabhq/badge.png?branch=master)](https://coveralls.io/r/gitlabhq/gitlabhq)
-### 4. Run release tool for CE and EE
+### 4. Run release tool
**Make sure EE `master` has latest changes from CE `master`**
@@ -38,8 +38,8 @@ git clone git@dev.gitlab.org:gitlab/release-tools.git
cd release-tools
```
-Release candidate creates stable branch from master.
-So we need to sync master branch between all CE remotes. Also do same for EE.
+Release candidate creates stable branch from master.
+So we need to sync master branch between all CE, EE and CI remotes.
```
bundle exec rake sync
@@ -53,22 +53,3 @@ bundle exec rake release["x.x.0.rc1"]
Now developers can use master for merging new features.
So you should use stable branch for future code changes related to release.
-
-
-### 5. Release GitLab CI RC1
-
-Add to your local `gitlab-ci/.git/config`:
-
-```
-[remote "public"]
- url = none
- pushurl = git@dev.gitlab.org:gitlab/gitlab-ci.git
- pushurl = git@gitlab.com:gitlab-org/gitlab-ci.git
- pushurl = git@github.com:gitlabhq/gitlab-ci.git
-```
-
-* Create a stable branch `x-y-stable`
-* Bump VERSION to `x.y.0.rc1`
-* `git tag -a v$(cat VERSION) -m "Version $(cat VERSION)"`
-* `git push public x-y-stable v$(cat VERSION)`
-