PageRenderTime 44ms CodeModel.GetById 13ms RepoModel.GetById 0ms app.codeStats 0ms

/doc/release-process.md

https://gitlab.com/Quetzalcoatl/VekitaCoin
Markdown | 122 lines | 87 code | 35 blank | 0 comment | 0 complexity | 18945e2ff80e3b72000254bdc683df7a MD5 | raw file
  1. Release Process
  2. ====================
  3. * * *
  4. ###update (commit) version in sources
  5. bitcoin-qt.pro
  6. contrib/verifysfbinaries/verify.sh
  7. doc/README*
  8. share/setup.nsi
  9. src/clientversion.h (change CLIENT_VERSION_IS_RELEASE to true)
  10. ###tag version in git
  11. git tag -s v0.8.7
  12. ###write release notes. git shortlog helps a lot, for example:
  13. git shortlog --no-merges v0.7.2..v0.8.0
  14. * * *
  15. ##perform gitian builds
  16. From a directory containing the vekita source, gitian-builder and gitian.sigs
  17. export SIGNER=(your gitian key, ie bluematt, sipa, etc)
  18. export VERSION=0.8.7
  19. cd ./gitian-builder
  20. Fetch and build inputs: (first time, or when dependency versions change)
  21. mkdir -p inputs; cd inputs/
  22. wget 'http://miniupnp.free.fr/files/download.php?file=miniupnpc-1.9.20140401.tar.gz' -O miniupnpc-1.9.20140401.tar.gz'
  23. wget 'https://www.openssl.org/source/openssl-1.0.1k.tar.gz'
  24. wget 'http://download.oracle.com/berkeley-db/db-4.8.30.NC.tar.gz'
  25. wget 'http://zlib.net/zlib-1.2.8.tar.gz'
  26. wget 'ftp://ftp.simplesystems.org/pub/libpng/png/src/history/libpng16/libpng-1.6.8.tar.gz'
  27. wget 'http://fukuchi.org/works/qrencode/qrencode-3.4.3.tar.bz2'
  28. wget 'http://downloads.sourceforge.net/project/boost/boost/1.55.0/boost_1_55_0.tar.bz2'
  29. wget 'http://download.qt-project.org/official_releases/qt/4.8/4.8.5/qt-everywhere-opensource-src-4.8.5.tar.gz'
  30. cd ..
  31. ./bin/gbuild ../vekita/contrib/gitian-descriptors/boost-win32.yml
  32. mv build/out/boost-*.zip inputs/
  33. ./bin/gbuild ../vekita/contrib/gitian-descriptors/deps-win32.yml
  34. mv build/out/bitcoin*.zip inputs/
  35. ./bin/gbuild ../vekita/contrib/gitian-descriptors/qt-win32.yml
  36. mv build/out/qt*.zip inputs/
  37. Build vekitad and vekita-qt on Linux32, Linux64, and Win32:
  38. ./bin/gbuild --commit vekita=v${VERSION} ../vekita/contrib/gitian-descriptors/gitian.yml
  39. ./bin/gsign --signer $SIGNER --release ${VERSION} --destination ../gitian.sigs/ ../vekita/contrib/gitian-descriptors/gitian.yml
  40. pushd build/out
  41. zip -r vekita-${VERSION}-linux.zip *
  42. mv vekita-${VERSION}-linux.zip ../../
  43. popd
  44. ./bin/gbuild --commit vekita=v${VERSION} ../vekita/contrib/gitian-descriptors/gitian-win32.yml
  45. ./bin/gsign --signer $SIGNER --release ${VERSION}-win32 --destination ../gitian.sigs/ ../vekita/contrib/gitian-descriptors/gitian-win32.yml
  46. pushd build/out
  47. zip -r vekita-${VERSION}-win32.zip *
  48. mv vekita-${VERSION}-win32.zip ../../
  49. popd
  50. Build output expected:
  51. 1. linux 32-bit and 64-bit binaries + source (vekita-${VERSION}-linux-gitian.zip)
  52. 2. windows 32-bit binary, installer + source (vekita-${VERSION}-win32-gitian.zip)
  53. 3. Gitian signatures (in gitian.sigs/${VERSION}[-win32]/(your gitian key)/
  54. repackage gitian builds for release as stand-alone zip/tar/installer exe
  55. **Linux .tar.gz:**
  56. unzip vekita-${VERSION}-linux-gitian.zip -d vekita-${VERSION}-linux
  57. tar czvf vekita-${VERSION}-linux.tar.gz vekita-${VERSION}-linux
  58. rm -rf vekita-${VERSION}-linux
  59. **Windows .zip and setup.exe:**
  60. unzip vekita-${VERSION}-win32-gitian.zip -d vekita-${VERSION}-win32
  61. mv vekita-${VERSION}-win32/vekita-*-setup.exe .
  62. zip -r vekita-${VERSION}-win32.zip bitcoin-${VERSION}-win32
  63. rm -rf vekita-${VERSION}-win32
  64. **Perform Mac build:**
  65. OSX binaries are created on a dedicated 32-bit, OSX 10.6.8 machine.
  66. Vekita 0.8.x is built with MacPorts. 0.9.x will be Homebrew only.
  67. qmake RELEASE=1 USE_UPNP=1 USE_QRCODE=1
  68. make
  69. export QTDIR=/opt/local/share/qt4 # needed to find translations/qt_*.qm files
  70. T=$(contrib/qt_translations.py $QTDIR/translations src/qt/locale)
  71. python2.7 share/qt/clean_mac_info_plist.py
  72. python2.7 contrib/macdeploy/macdeployqtplus Vekita-Qt.app -add-qt-tr $T -dmg -fancy contrib/macdeploy/fancy.plist
  73. Build output expected: Vekita-Qt.dmg
  74. ###Next steps:
  75. * Code-sign Windows -setup.exe (in a Windows virtual machine) and
  76. OSX Bitcoin-Qt.app (Note: only Gavin has the code-signing keys currently)
  77. * update vekita.org version
  78. make sure all OS download links go to the right versions
  79. * update forum version
  80. * update wiki download links
  81. Commit your signature to gitian.sigs:
  82. pushd gitian.sigs
  83. git add ${VERSION}/${SIGNER}
  84. git add ${VERSION}-win32/${SIGNER}
  85. git commit -a
  86. git push # Assuming you can push to the gitian.sigs tree
  87. popd