Bugfix: depends/Travis: Use --location (follow redirects) and --fail [on HTTP error...
[bitcoinplatinum.git] / doc / release-process.md
blob9a2362cb8506884c43a3791c92fe94e8bd2d4f01
1 Release Process
2 ====================
4 * Update translations (ping wumpus, Diapolo or tcatm on IRC) see [translation_process.md](https://github.com/bitcoin/bitcoin/blob/master/doc/translation_process.md#syncing-with-transifex)
5 * Update [bips.md](bips.md) to account for changes since the last release.
7 * * *
9 ###First time / New builders
10 Check out the source code in the following directory hierarchy.
12         cd /path/to/your/toplevel/build
13         git clone https://github.com/bitcoin/gitian.sigs.git
14         git clone https://github.com/bitcoin/bitcoin-detached-sigs.git
15         git clone https://github.com/devrandom/gitian-builder.git
16         git clone https://github.com/bitcoin/bitcoin.git
18 ###Bitcoin maintainers/release engineers, update (commit) version in sources
20         pushd ./bitcoin
21         contrib/verifysfbinaries/verify.sh
22         doc/README*
23         share/setup.nsi
24         src/clientversion.h (change CLIENT_VERSION_IS_RELEASE to true)
26         # tag version in git
28         git tag -s v(new version, e.g. 0.8.0)
30         # write release notes. git shortlog helps a lot, for example:
32         git shortlog --no-merges v(current version, e.g. 0.7.2)..v(new version, e.g. 0.8.0)
33         popd
35 * * *
37 ###Setup and perform Gitian builds
39  Setup Gitian descriptors:
41         pushd ./bitcoin
42         export SIGNER=(your Gitian key, ie bluematt, sipa, etc)
43         export VERSION=(new version, e.g. 0.8.0)
44         git checkout v${VERSION}
45         popd
47   Ensure your gitian.sigs are up-to-date if you wish to gverify your builds against other Gitian signatures.
49         pushd ./gitian.sigs
50         git pull
51         popd
53   Ensure gitian-builder is up-to-date to take advantage of new caching features (`e9741525c` or later is recommended).
55         pushd ./gitian-builder
56         git pull
58 ###Fetch and create inputs: (first time, or when dependency versions change)
60         mkdir -p inputs
61         wget -P inputs https://bitcoincore.org/cfields/osslsigncode-Backports-to-1.7.1.patch
62         wget -P inputs http://downloads.sourceforge.net/project/osslsigncode/osslsigncode/osslsigncode-1.7.1.tar.gz
64  Register and download the Apple SDK: see [OS X readme](README_osx.txt) for details.
66  https://developer.apple.com/devcenter/download.action?path=/Developer_Tools/xcode_6.1.1/xcode_6.1.1.dmg
68  Using a Mac, create a tarball for the 10.9 SDK and copy it to the inputs directory:
70         tar -C /Volumes/Xcode/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/ -czf MacOSX10.9.sdk.tar.gz MacOSX10.9.sdk
72 ###Optional: Seed the Gitian sources cache and offline git repositories
74 By default, Gitian will fetch source files as needed. To cache them ahead of time:
76         make -C ../bitcoin/depends download SOURCES_PATH=`pwd`/cache/common
78 Only missing files will be fetched, so this is safe to re-run for each build.
80 NOTE: Offline builds must use the --url flag to ensure Gitian fetches only from local URLs. For example:
81 ```
82 ./bin/gbuild --url bitcoin=/path/to/bitcoin,signature=/path/to/sigs {rest of arguments}
83 ```
84 The gbuild invocations below <b>DO NOT DO THIS</b> by default.
86 ###Build (and optionally verify) Bitcoin Core for Linux, Windows, and OS X:
88         ./bin/gbuild --commit bitcoin=v${VERSION} ../bitcoin/contrib/gitian-descriptors/gitian-linux.yml
89         ./bin/gsign --signer $SIGNER --release ${VERSION}-linux --destination ../gitian.sigs/ ../bitcoin/contrib/gitian-descriptors/gitian-linux.yml
90         ./bin/gverify -v -d ../gitian.sigs/ -r ${VERSION}-linux ../bitcoin/contrib/gitian-descriptors/gitian-linux.yml
91         mv build/out/bitcoin-*.tar.gz build/out/src/bitcoin-*.tar.gz ../
93         ./bin/gbuild --commit bitcoin=v${VERSION} ../bitcoin/contrib/gitian-descriptors/gitian-win.yml
94         ./bin/gsign --signer $SIGNER --release ${VERSION}-win-unsigned --destination ../gitian.sigs/ ../bitcoin/contrib/gitian-descriptors/gitian-win.yml
95         ./bin/gverify -v -d ../gitian.sigs/ -r ${VERSION}-win-unsigned ../bitcoin/contrib/gitian-descriptors/gitian-win.yml
96         mv build/out/bitcoin-*-win-unsigned.tar.gz inputs/bitcoin-win-unsigned.tar.gz
97         mv build/out/bitcoin-*.zip build/out/bitcoin-*.exe ../
99         ./bin/gbuild --commit bitcoin=v${VERSION} ../bitcoin/contrib/gitian-descriptors/gitian-osx.yml
100         ./bin/gsign --signer $SIGNER --release ${VERSION}-osx-unsigned --destination ../gitian.sigs/ ../bitcoin/contrib/gitian-descriptors/gitian-osx.yml
101         ./bin/gverify -v -d ../gitian.sigs/ -r ${VERSION}-osx-unsigned ../bitcoin/contrib/gitian-descriptors/gitian-osx.yml
102         mv build/out/bitcoin-*-osx-unsigned.tar.gz inputs/bitcoin-osx-unsigned.tar.gz
103         mv build/out/bitcoin-*.tar.gz build/out/bitcoin-*.dmg ../
104         popd
106   Build output expected:
108   1. source tarball (bitcoin-${VERSION}.tar.gz)
109   2. linux 32-bit and 64-bit dist tarballs (bitcoin-${VERSION}-linux[32|64].tar.gz)
110   3. windows 32-bit and 64-bit unsigned installers and dist zips (bitcoin-${VERSION}-win[32|64]-setup-unsigned.exe, bitcoin-${VERSION}-win[32|64].zip)
111   4. OS X unsigned installer and dist tarball (bitcoin-${VERSION}-osx-unsigned.dmg, bitcoin-${VERSION}-osx64.tar.gz)
112   5. Gitian signatures (in gitian.sigs/${VERSION}-<linux|{win,osx}-unsigned>/(your Gitian key)/
114 ###Next steps:
116 Commit your signature to gitian.sigs:
118         pushd gitian.sigs
119         git add ${VERSION}-linux/${SIGNER}
120         git add ${VERSION}-win-unsigned/${SIGNER}
121         git add ${VERSION}-osx-unsigned/${SIGNER}
122         git commit -a
123         git push  # Assuming you can push to the gitian.sigs tree
124         popd
126   Wait for Windows/OS X detached signatures:
128         Once the Windows/OS X builds each have 3 matching signatures, they will be signed with their respective release keys.
129         Detached signatures will then be committed to the [bitcoin-detached-sigs](https://github.com/bitcoin/bitcoin-detached-sigs) repository, which can be combined with the unsigned apps to create signed binaries.
131   Create (and optionally verify) the signed OS X binary:
133         pushd ./gitian-builder
134         ./bin/gbuild -i --commit signature=v${VERSION} ../bitcoin/contrib/gitian-descriptors/gitian-osx-signer.yml
135         ./bin/gsign --signer $SIGNER --release ${VERSION}-osx-signed --destination ../gitian.sigs/ ../bitcoin/contrib/gitian-descriptors/gitian-osx-signer.yml
136         ./bin/gverify -v -d ../gitian.sigs/ -r ${VERSION}-osx-signed ../bitcoin/contrib/gitian-descriptors/gitian-osx-signer.yml
137         mv build/out/bitcoin-osx-signed.dmg ../bitcoin-${VERSION}-osx.dmg
138         popd
140   Create (and optionally verify) the signed Windows binaries:
142         pushd ./gitian-builder
143         ./bin/gbuild -i --commit signature=v${VERSION} ../bitcoin/contrib/gitian-descriptors/gitian-win-signer.yml
144         ./bin/gsign --signer $SIGNER --release ${VERSION}-win-signed --destination ../gitian.sigs/ ../bitcoin/contrib/gitian-descriptors/gitian-win-signer.yml
145         ./bin/gverify -v -d ../gitian.sigs/ -r ${VERSION}-win-signed ../bitcoin/contrib/gitian-descriptors/gitian-win-signer.yml
146         mv build/out/bitcoin-*win64-setup.exe ../bitcoin-${VERSION}-win64-setup.exe
147         mv build/out/bitcoin-*win32-setup.exe ../bitcoin-${VERSION}-win32-setup.exe
148         popd
150 Commit your signature for the signed OS X/Windows binaries:
152         pushd gitian.sigs
153         git add ${VERSION}-osx-signed/${SIGNER}
154         git add ${VERSION}-win-signed/${SIGNER}
155         git commit -a
156         git push  # Assuming you can push to the gitian.sigs tree
157         popd
159 -------------------------------------------------------------------------
161 ### After 3 or more people have gitian-built and their results match:
163 - Create `SHA256SUMS.asc` for the builds, and GPG-sign it:
164 ```bash
165 sha256sum * > SHA256SUMS
166 gpg --digest-algo sha256 --clearsign SHA256SUMS # outputs SHA256SUMS.asc
167 rm SHA256SUMS
169 (the digest algorithm is forced to sha256 to avoid confusion of the `Hash:` header that GPG adds with the SHA256 used for the files)
170 Note: check that SHA256SUMS itself doesn't end up in SHA256SUMS, which is a spurious/nonsensical entry.
172 - Upload zips and installers, as well as `SHA256SUMS.asc` from last step, to the bitcoin.org server
173   into `/var/www/bin/bitcoin-core-${VERSION}`
175 - Update bitcoin.org version
177   - First, check to see if the Bitcoin.org maintainers have prepared a
178     release: https://github.com/bitcoin-dot-org/bitcoin.org/labels/Releases
180       - If they have, it will have previously failed their Travis CI
181         checks because the final release files weren't uploaded.
182         Trigger a Travis CI rebuild---if it passes, merge.
184   - If they have not prepared a release, follow the Bitcoin.org release
185     instructions: https://github.com/bitcoin-dot-org/bitcoin.org#release-notes
187   - After the pull request is merged, the website will automatically show the newest version within 15 minutes, as well
188     as update the OS download links. Ping @saivann/@harding (saivann/harding on Freenode) in case anything goes wrong
190 - Announce the release:
192   - Release sticky on bitcointalk: https://bitcointalk.org/index.php?board=1.0
194   - Bitcoin-development mailing list
196   - Update title of #bitcoin on Freenode IRC
198   - Optionally reddit /r/Bitcoin, ... but this will usually sort out itself
200 - Notify BlueMatt so that he can start building [https://launchpad.net/~bitcoin/+archive/ubuntu/bitcoin](the PPAs)
202 - Add release notes for the new version to the directory `doc/release-notes` in git master
204 - Celebrate