release: update docs to reflect new layout
- Split linux32/linux64 releases - Split win32/win64 zips - Post-processing should no longer be required. The deterministic outputs are ready for consumption.
This commit is contained in:
parent
52bb7a7e1b
commit
dfef929bf7
1 changed files with 10 additions and 36 deletions
|
@ -54,48 +54,22 @@ Release Process
|
||||||
|
|
||||||
./bin/gbuild --commit bitcoin=v${VERSION} ../bitcoin/contrib/gitian-descriptors/gitian-linux.yml
|
./bin/gbuild --commit bitcoin=v${VERSION} ../bitcoin/contrib/gitian-descriptors/gitian-linux.yml
|
||||||
./bin/gsign --signer $SIGNER --release ${VERSION}-linux --destination ../gitian.sigs/ ../bitcoin/contrib/gitian-descriptors/gitian-linux.yml
|
./bin/gsign --signer $SIGNER --release ${VERSION}-linux --destination ../gitian.sigs/ ../bitcoin/contrib/gitian-descriptors/gitian-linux.yml
|
||||||
pushd build/out
|
mv build/out/bitcoin-*.tar.gz build/out/src/bitcoin-*.tar.gz ../
|
||||||
zip -r bitcoin-${VERSION}-linux-gitian.zip *
|
|
||||||
mv bitcoin-${VERSION}-linux-gitian.zip ../../../
|
|
||||||
popd
|
|
||||||
./bin/gbuild --commit bitcoin=v${VERSION} ../bitcoin/contrib/gitian-descriptors/gitian-win.yml
|
./bin/gbuild --commit bitcoin=v${VERSION} ../bitcoin/contrib/gitian-descriptors/gitian-win.yml
|
||||||
./bin/gsign --signer $SIGNER --release ${VERSION}-win --destination ../gitian.sigs/ ../bitcoin/contrib/gitian-descriptors/gitian-win.yml
|
./bin/gsign --signer $SIGNER --release ${VERSION}-win --destination ../gitian.sigs/ ../bitcoin/contrib/gitian-descriptors/gitian-win.yml
|
||||||
pushd build/out
|
mv build/out/bitcoin-*.zip build/out/bitcoin-*.exe ../
|
||||||
zip -r bitcoin-${VERSION}-win-gitian.zip *
|
./bin/gbuild --commit bitcoin=v${VERSION} ../bitcoin/contrib/gitian-descriptors/gitian-osx.yml
|
||||||
mv bitcoin-${VERSION}-win-gitian.zip ../../../
|
./bin/gsign --signer $SIGNER --release ${VERSION}-osx --destination ../gitian.sigs/ ../bitcoin/contrib/gitian-descriptors/gitian-osx.yml
|
||||||
popd
|
mv build/out/bitcoin-*.tar.gz build/out/bitcoin-*.dmg ../
|
||||||
./bin/gbuild --commit bitcoin=v${VERSION} ../bitcoin/contrib/gitian-descriptors/gitian-osx.yml
|
|
||||||
./bin/gsign --signer $SIGNER --release ${VERSION}-osx --destination ../gitian.sigs/ ../bitcoin/contrib/gitian-descriptors/gitian-osx.yml
|
|
||||||
pushd build/out
|
|
||||||
mv Bitcoin-Qt.dmg ../../../
|
|
||||||
popd
|
|
||||||
popd
|
popd
|
||||||
|
|
||||||
Build output expected:
|
Build output expected:
|
||||||
|
|
||||||
1. linux 32-bit and 64-bit binaries + source (bitcoin-${VERSION}-linux-gitian.zip)
|
1. source tarball (bitcoin-${VERSION}.tar.gz)
|
||||||
2. windows 32-bit and 64-bit binaries + installer + source (bitcoin-${VERSION}-win-gitian.zip)
|
2. linux 32-bit and 64-bit binaries dist tarballs (bitcoin-${VERSION}-linux[32|64].tar.gz)
|
||||||
3. OSX installer (Bitcoin-Qt.dmg)
|
3. windows 32-bit and 64-bit installers and dist zips (bitcoin-${VERSION}-win[32|64]-setup.exe, bitcoin-${VERSION}-win[32|64].zip)
|
||||||
4. Gitian signatures (in gitian.sigs/${VERSION}-<linux|win|osx>/(your gitian key)/
|
4. OSX installer (bitcoin-${VERSION}-osx.dmg)
|
||||||
|
5. Gitian signatures (in gitian.sigs/${VERSION}-<linux|win|osx>/(your gitian key)/
|
||||||
repackage gitian builds for release as stand-alone zip/tar/installer exe
|
|
||||||
|
|
||||||
**Linux .tar.gz:**
|
|
||||||
|
|
||||||
unzip bitcoin-${VERSION}-linux-gitian.zip -d bitcoin-${VERSION}-linux
|
|
||||||
tar czvf bitcoin-${VERSION}-linux.tar.gz bitcoin-${VERSION}-linux
|
|
||||||
rm -rf bitcoin-${VERSION}-linux
|
|
||||||
|
|
||||||
**Windows .zip and setup.exe:**
|
|
||||||
|
|
||||||
unzip bitcoin-${VERSION}-win-gitian.zip -d bitcoin-${VERSION}-win
|
|
||||||
mv bitcoin-${VERSION}-win/bitcoin-*-setup.exe .
|
|
||||||
zip -r bitcoin-${VERSION}-win.zip bitcoin-${VERSION}-win
|
|
||||||
rm -rf bitcoin-${VERSION}-win
|
|
||||||
|
|
||||||
**Mac OS X .dmg:**
|
|
||||||
|
|
||||||
mv Bitcoin-Qt.dmg bitcoin-${VERSION}-osx.dmg
|
|
||||||
|
|
||||||
###Next steps:
|
###Next steps:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue