blob: 03346216127a765a28a9d3879e7d64d772884066 [file] [log] [blame] [view]
nmittler483738e2015-06-08 14:32:37 -07001How to Create a Release of GRPC Java (for Maintainers Only)
2===============================================================
3
4Build Environments
5------------------
6We deploy GRPC to Maven Central under the following systems:
7- Ubuntu 14.04 with Docker 1.6.1 that runs CentOS 6.6
8- Windows 7 64-bit with MSYS2 with mingw32 and mingw64
9- Mac OS X 10.9.5
10
11Other systems may also work, but we haven't verified them.
12
13Prerequisites
14-------------
15
16### Setup OSSRH and Signing
17
18If you haven't deployed artifacts to Maven Central before, you need to setup
19your OSSRH (OSS Repository Hosting) account and signing keys.
20- Follow the instructions on [this
21 page](http://central.sonatype.org/pages/ossrh-guide.html) to set up an
22 account with OSSRH.
Carl Mastrangelo7a6b1662015-08-12 13:52:45 -070023 - You only need to create the account, not set up a new project
24 - Contact a gRPC maintainer to add your account after you have created it.
nmittler483738e2015-06-08 14:32:37 -070025- (For release deployment only) Install GnuPG and [generate your key
26 pair](https://www.gnupg.org/documentation/howtos.html). You'll also
27 need to [publish your public key](https://www.gnupg.org/gph/en/manual.html#AEN464)
28 to make it visible to the Sonatype servers
29 (e.g. `gpg --keyserver pgp.mit.edu --send-key <key ID>`).
30- Put your GnuPG key password and OSSRH account information in
31 `<your-home-directory>/.gradle/gradle.properties`.
32
33```
34# You need the signing properties only if you are making release deployment
35signing.keyId=<8-character-public-key-id>
36signing.password=<key-password>
37signing.secretKeyRingFile=<your-home-directory>/.gnupg/secring.gpg
38
39ossrhUsername=<ossrh-username>
40ossrhPassword=<ossrh-password>
41checkstyle.ignoreFailures=false
42```
43
44### Build Protobuf
45Protobuf libraries are needed for compiling the GRPC codegen. Despite that you
46may have installed Protobuf on your system, you may want to build Protobuf
47separately and install it under your personal directory, because
48
491. The Protobuf version installed on your system may be different from what
50 GRPC requires. You may not want to pollute your system installation.
512. We will deploy both 32-bit and 64-bit versions of the codegen, thus require
52 both variants of Protobuf libraries. You don't want to mix them in your
53 system paths.
54
55Please see the [Main Readme](README.md) for details on building protobuf.
56
57Tagging the Release
58----------------------
Eric Andersonb8245652016-02-17 11:34:50 -080059The first step in the release process is to create a release branch, bump
60versions, and create a tag for the release. Our release branches follow the naming
nmittler483738e2015-06-08 14:32:37 -070061convention of `v<major>.<minor>.x`, while the tags include the patch version
62`v<major>.<minor>.<patch>`. For example, the same branch `v0.7.x`
63would be used to create all `v0.7` tags (e.g. `v0.7.0`, `v0.7.1`).
64
Eric Andersonb8245652016-02-17 11:34:50 -0800651. Create the release branch and push it to GitHub:
nmittler483738e2015-06-08 14:32:37 -070066
67 ```bash
Eric Andersonb8245652016-02-17 11:34:50 -080068 $ MAJOR=0 MINOR=7 PATCH=0 # Set appropriately for new release
69 $ git checkout -b v$MAJOR.$MINOR.x master
70 $ git push upstream v$MAJOR.$MINOR.x
nmittler483738e2015-06-08 14:32:37 -070071 ```
Eric Anderson554287a2016-06-16 10:12:41 -0700722. For `master`, change root build files to the next minor snapshot (e.g.
Eric Andersonb8245652016-02-17 11:34:50 -080073 ``0.8.0-SNAPSHOT``).
nmittler483738e2015-06-08 14:32:37 -070074
75 ```bash
Eric Andersonb8245652016-02-17 11:34:50 -080076 $ git checkout -b bump-version master
77 # Change version to next minor (and keep -SNAPSHOT)
78 $ sed -i 's/[0-9]\+\.[0-9]\+\.[0-9]\+\(.*CURRENT_GRPC_VERSION\)/'$MAJOR.$((MINOR+1)).0'\1/' \
Eric Anderson13f01222016-03-15 12:53:44 -070079 build.gradle android-interop-testing/app/build.gradle \
Eric Andersond7bf67e2016-06-24 18:18:06 -070080 examples/build.gradle examples/pom.xml \
Naveen Reddy Chedeti28609592016-07-28 08:48:27 -070081 examples/android/app/build.gradle examples/thrift/build.gradle
Eric Anderson7b26a322016-07-01 11:59:21 -070082 $ ./gradlew build
Eric Andersonb8245652016-02-17 11:34:50 -080083 $ git commit -a -m "Start $MAJOR.$((MINOR+1)).0 development cycle"
nmittler483738e2015-06-08 14:32:37 -070084 ```
Eric Andersonb8245652016-02-17 11:34:50 -0800853. Go through PR review and push the master branch to GitHub:
nmittler483738e2015-06-08 14:32:37 -070086
87 ```bash
Eric Andersonb8245652016-02-17 11:34:50 -080088 $ git checkout master
89 $ git merge --ff-only bump-version
90 $ git push upstream master
nmittler483738e2015-06-08 14:32:37 -070091 ```
Eric Anderson554287a2016-06-16 10:12:41 -0700924. For vMajor.Minor.x branch, change root build files to remove "-SNAPSHOT" for
93 the next release version (e.g. `0.7.0`). Commit the result and make a tag:
nmittler483738e2015-06-08 14:32:37 -070094
95 ```bash
Eric Andersonb8245652016-02-17 11:34:50 -080096 $ git checkout -b release v$MAJOR.$MINOR.x
97 # Change version to remove -SNAPSHOT
98 $ sed -i 's/-SNAPSHOT\(.*CURRENT_GRPC_VERSION\)/\1/' \
Eric Anderson554287a2016-06-16 10:12:41 -070099 build.gradle android-interop-testing/app/build.gradle \
Eric Andersond7bf67e2016-06-24 18:18:06 -0700100 examples/build.gradle examples/pom.xml \
Naveen Reddy Chedeti28609592016-07-28 08:48:27 -0700101 examples/android/app/build.gradle examples/thrift/build.gradle
Eric Anderson7b26a322016-07-01 11:59:21 -0700102 $ ./gradlew build
Eric Andersonb8245652016-02-17 11:34:50 -0800103 $ git commit -a -m "Bump version to $MAJOR.$MINOR.$PATCH"
104 $ git tag -a v$MAJOR.$MINOR.$PATCH -m "Version $MAJOR.$MINOR.$PATCH"
nmittler483738e2015-06-08 14:32:37 -0700105 ```
Eric Anderson554287a2016-06-16 10:12:41 -07001065. Change root build files to the next snapshot version (e.g. `0.7.1-SNAPSHOT`).
107 Commit the result:
nmittler483738e2015-06-08 14:32:37 -0700108
109 ```bash
Eric Andersonb8245652016-02-17 11:34:50 -0800110 # Change version to next patch and add -SNAPSHOT
111 $ sed -i 's/[0-9]\+\.[0-9]\+\.[0-9]\+\(.*CURRENT_GRPC_VERSION\)/'$MAJOR.$MINOR.$((PATCH+1))-SNAPSHOT'\1/' \
Eric Anderson554287a2016-06-16 10:12:41 -0700112 build.gradle android-interop-testing/app/build.gradle \
Eric Andersond7bf67e2016-06-24 18:18:06 -0700113 examples/build.gradle examples/pom.xml \
Naveen Reddy Chedeti28609592016-07-28 08:48:27 -0700114 examples/android/app/build.gradle examples/thrift/build.gradle
Eric Anderson7b26a322016-07-01 11:59:21 -0700115 $ ./gradlew build
Eric Andersonb8245652016-02-17 11:34:50 -0800116 $ git commit -a -m "Bump version to $MAJOR.$MINOR.$((PATCH+1))-SNAPSHOT"
117 ```
1186. Go through PR review and push the release tag and updated release branch to
119 GitHub:
120
121 ```bash
122 $ git checkout v$MAJOR.$MINOR.x
123 $ git merge --ff-only release
124 $ git push upstream v$MAJOR.$MINOR.$PATCH
125 $ git push upstream v$MAJOR.$MINOR.x
nmittler483738e2015-06-08 14:32:37 -0700126 ```
127
128Setup Build Environment
129---------------------------
130
131### Linux
132The deployment for Linux uses [Docker](https://www.docker.com/) running
133CentOS 6.6 in order to ensure that we have a consistent deployment environment
134on Linux. You'll first need to install Docker if not already installed on your
Carl Mastrangelo8f6562e2015-08-13 15:19:53 -0700135system. Make sure to have at least version 1.7.1 or later.
nmittler483738e2015-06-08 14:32:37 -0700136
1371. Under the [Protobuf source directory](https://github.com/google/protobuf),
138 build the `protoc-artifacts` image:
139
140 ```bash
141 protobuf$ docker build -t protoc-artifacts protoc-artifacts
142 ```
1432. Under the grpc-java source directory, build the `grpc-java-deploy` image:
144
145 ```bash
146 grpc-java$ docker build -t grpc-java-deploy compiler
147 ```
1483. Start a Docker container that has the deploy environment set up for you. The
149 GRPC source is cloned into `/grpc-java`.
150
151 ```bash
152 $ docker run -it --rm=true grpc-java-deploy
153 ```
154
155 Note that the container will be deleted after you exit. Any changes you have
156 made (e.g., copied configuration files) will be lost. If you want to keep the
157 container, remove `--rm=true` from the command line.
1584. Next, you'll need to copy your OSSRH credentials and GnuPG keys to your docker container.
Kun Zhang2bd08872016-01-22 15:32:04 -0800159 In Docker:
160 ```
161 # mkdir /root/.gradle
162 ```
163 Find the container ID in your bash prompt, which is shown as `[root@<container-ID> ...]`.
164 In host:
165 ```
166 $ docker cp ~/.gnupg <container-ID>:/root/
167 $ docker cp ~/.gradle/gradle.properties <container-ID>:/root/.gradle/
nmittler483738e2015-06-08 14:32:37 -0700168 ```
169
170 You'll also need to update `signing.secretKeyRingFile` in
171 `/root/.gradle/gradle.properties` to point to `/root/.gnupg/secring.gpg`.
172
173### Windows
174
175#### Windows 64-bit with MSYS2 (Recommended for Windows)
176Because the gcc shipped with MSYS2 doesn't support multilib, you have to
177compile and deploy 32-bit and 64-bit binaries in separate steps.
178
179##### Under MinGW-w64 Win32 Shell
1801. Compile and install 32-bit protobuf:
181
182 ```bash
183 protobuf$ ./configure --disable-shared --prefix=$HOME/protobuf-32
184 protobuf$ make clean && make && make install
185 ```
1862. Configure CXXFLAGS needed by the protoc plugin when building.
187
188 ```bash
189 grpc-java$ export CXXFLAGS="-I$HOME/protobuf-32/include" \
190 LDFLAGS="-L$HOME/protobuf-32/lib"
191 ```
192
193##### Under MinGW-w64 Win64 Shell
1941. Compile and install 64-bit protobuf:
195
196 ```bash
197 protobuf$ ./configure --disable-shared --prefix=$HOME/protobuf-64
198 protobuf$ make clean && make && make install
199 ```
2002. Configure CXXFLAGS needed by the protoc plugin when building.
201
202 ```bash
203 grpc-java$ export CXXFLAGS="-I$HOME/protobuf-64/include" \
204 LDFLAGS="-L$HOME/protobuf-64/lib"
205 ```
206
207#### Windows 64-bit with Cygwin64 (TODO: incomplete)
208Because the MinGW gcc shipped with Cygwin64 doesn't support multilib, you have
209to compile and deploy 32-bit and 64-bit binaries in separate steps.
210
2111. Compile and install 32-bit protobuf. `-static-libgcc -static-libstdc++` are
212 needed for `protoc` to be successfully run in the unit test.
213
214 ```bash
215 protobuf$ LDFLAGS="-static-libgcc -static-libstdc++" ./configure --host=i686-w64-mingw32 --disable-shared --prefix=$HOME/protobuf-32
216 protobuf$ make clean && make && make install
217 ```
218
2192. Compile and install 64-bit protobuf:
220
221 ```bash
222 protobuf$ ./configure --host=x86_64-w64-mingw32 --disable-shared --prefix=$HOME/protobuf-64
223 protobuf$ make clean && make && make install
224 ```
225
226### Mac
227Please refer to [Protobuf
228README](https://github.com/google/protobuf/blob/master/README.md) for how to
229set up GCC and Unix tools on Mac.
230
231Mac OS X has been 64-bit-only since 10.7 and we are compiling for 10.7 and up.
232We only build 64-bit artifact for Mac.
233
2341. Compile and install protobuf:
235
236 ```bash
237 protobuf$ CXXFLAGS="-m64" ./configure --disable-shared --prefix=$HOME/protobuf
238 protobuf$ make clean && make && make install
239 ```
2402. Configure CXXFLAGS needed by the protoc plugin when building.
241
242 ```bash
243 grpc-java$ export CXXFLAGS="-I$HOME/protobuf/include" \
244 LDFLAGS="$HOME/protobuf/lib/libprotobuf.a $HOME/protobuf/lib/libprotoc.a"
245 ```
246
247Build and Deploy
248----------------
249We currently distribute the following OSes and architectures:
250
251| OS | x86_32 | x86_64 |
252| --- | --- | --- |
253| Linux | X | X |
254| Windows | X | X |
255| Mac | | X |
256
257Deployment to Maven Central (or the snapshot repo) is a two-step process. The only
258artifact that is platform-specific is codegen, so we only need to deploy the other
259jars once. So the first deployment is for all of the artifacts from one of the selected
260OS/architectures. After that, we then deploy the codegen artifacts for the remaining
261OS/architectures.
262
263**NOTE: _Before building/deploying, be sure to switch to the appropriate branch or tag in
264the grpc-java source directory._**
265
266### First Deployment
267
268As stated above, this only needs to be done once for one of the selected OS/architectures.
269The following command will build the whole project and upload it to Maven
Eric Anderson41a9c942016-04-29 15:19:24 -0700270Central. Parallel building [is not safe during
271uploadArchives](https://issues.gradle.org/browse/GRADLE-3420).
nmittler483738e2015-06-08 14:32:37 -0700272```bash
Eric Anderson41a9c942016-04-29 15:19:24 -0700273grpc-java$ ./gradlew clean build && ./gradlew -Dorg.gradle.parallel=false uploadArchives
nmittler483738e2015-06-08 14:32:37 -0700274```
275
276If the version has the `-SNAPSHOT` suffix, the artifacts will automatically
277go to the snapshot repository. Otherwise it's a release deployment and the
278artifacts will go to a freshly created staging repository.
279
280### Deploy GRPC Codegen for Additional Platforms
281The previous step will only deploy the codegen artifacts for the OS you run on
282it and the architecture of your JVM. For a fully fledged deployment, you will
283need to deploy the codegen for all other supported OSes and architectures.
284
285To deploy the codegen for an OS and architecture, you must run the following
286commands on that OS and specify the architecture by the flag `-PtargetArch=<arch>`.
287
288If you are doing a snapshot deployment:
289
290```bash
Eric Anderson41a9c942016-04-29 15:19:24 -0700291grpc-java$ ./gradlew clean grpc-compiler:build grpc-compiler:uploadArchives \
292 -PtargetArch=<arch> -Dorg.gradle.parallel=false
nmittler483738e2015-06-08 14:32:37 -0700293```
294
295When deploying a Release, the first deployment will create
296[a new staging repository](https://oss.sonatype.org/#stagingRepositories). You'll need
297to look up the ID in the OSSRH UI (usually in the form of `iogrpc-*`). Codegen
298deployment commands should include `-PrepositoryId=<repository-id>` in order to
299ensure that the artifacts are pushed to the same staging repository.
300
301```bash
302grpc-java$ ./gradlew clean grpc-compiler:build grpc-compiler:uploadArchives -PtargetArch=<arch> \
Eric Anderson41a9c942016-04-29 15:19:24 -0700303 -PrepositoryId=<repository-id> -Dorg.gradle.parallel=false
nmittler483738e2015-06-08 14:32:37 -0700304```
305
306Releasing on Maven Central
307--------------------------
308Once all of the artifacts have been pushed to the staging repository, the
309repository must first be `closed`, which will trigger several sanity checks
310on the repository. If this completes successfully, the repository can then
311be `released`, which will begin the process of pushing the new artifacts to
312Maven Central (the staging repository will be destroyed in the process). You can
313see the complete process for releasing to Maven Central on the [OSSRH site]
314(http://central.sonatype.org/pages/releasing-the-deployment.html).
315
316Notify the Community
317--------------------
318After waiting ~1 day and verifying that the release appears on [Maven Central]
319(http://mvnrepository.com/), the last step is to document and publicize the release.
320
3211. Add [Release Notes](https://github.com/grpc/grpc-java/releases) for the new tag.
322 The description should include any major fixes or features since the last release.
323 You may choose to add links to bugs, PRs, or commits if appropriate.
3242. Post a release announcement to [grpc-io](https://groups.google.com/forum/#!forum/grpc-io)
325 (`grpc-io@googlegroups.com`). The title should be something that clearly identifies
326 the release (e.g.`GRPC-Java <tag> Released`).
Eric Andersone64c7552016-02-03 14:14:13 -0800327
328Update README.md
329----------------
330
331Update the version numbers in README.md to the new grpc-java version. _Also_
332update the version numbers for protoc if the protobuf library version was
333updated since last release. Make a new commit with description similar to
334"Update README to reference \<VERSION\>" and have it reviewed before submitting.
335
336Update Hosted Javadoc
337---------------------
338
Eric Anderson27d84892016-03-10 16:28:35 -0800339Now we need to update gh-pages with the new Javadoc:
Eric Andersone64c7552016-02-03 14:14:13 -0800340
341```bash
342git checkout gh-pages
343rm -r javadoc/
Eric Anderson27d84892016-03-10 16:28:35 -0800344wget -O grpc-all-javadoc.jar "http://search.maven.org/remotecontent?filepath=io/grpc/grpc-all/$MAJOR.$MINOR.$PATCH/grpc-all-$MAJOR.$MINOR.$PATCH-javadoc.jar"
345unzip -d javadoc grpc-all-javadoc.jar
346rm grpc-all-javadoc.jar
Eric Andersone64c7552016-02-03 14:14:13 -0800347rm -r javadoc/META-INF/
348git add -A javadoc
Eric Anderson27d84892016-03-10 16:28:35 -0800349git commit -m "Javadoc for $MAJOR.$MINOR.$PATCH"
Eric Andersone64c7552016-02-03 14:14:13 -0800350```
351
352Push gh-pages to the main repository and verify the current version is [live
353on grpc.io](http://www.grpc.io/grpc-java/javadoc/).