2014-05-22 13:45:30 -05:00
|
|
|
High level release procedure that we follow to make a formal release for the
|
|
|
|
getdns API project. This is a recipe - if you have a better way to do it then
|
|
|
|
update this document and share it with us.
|
|
|
|
|
|
|
|
- code freeze
|
|
|
|
confirm with core team that all commits are in, from this point forward
|
2014-06-30 14:11:39 -05:00
|
|
|
only bug fixes should be committed to the release branch, once the release
|
|
|
|
is cut nothing should be committed to the release branch (make a new release)
|
2014-05-22 13:45:30 -05:00
|
|
|
|
|
|
|
- create a release branch
|
|
|
|
in git repository named for the release, e.g. "v0.1.2"
|
|
|
|
we do this because folks may want to continue to work in the master branch
|
|
|
|
and be free to commit changes without injuring the release process. Since
|
|
|
|
building and testing binaries for a release takes a few days we don't want to
|
|
|
|
force changes to queue up.
|
|
|
|
|
|
|
|
One might argue that a release can be cut more quickly, however there are
|
|
|
|
inevitably little tweaks that need to be made that get uncovered as a result
|
|
|
|
of the binary builds - these tweaks need to be included in the souces for
|
|
|
|
this release so building the source tarball can't be done until all of the
|
|
|
|
binaries have been built and tested.
|
|
|
|
|
|
|
|
- clone repo release branch to a clean local repo
|
|
|
|
this should be a brand spanking new directory - don't try to shortcut it and
|
|
|
|
use a working directory with lots of cruft - crap will find its way into the
|
|
|
|
release and embarass you:
|
|
|
|
|
|
|
|
# git clone -b v0.1.2 https://github.com/getdnsapi/getdns.git getdns-0.1.2
|
|
|
|
|
|
|
|
- update files to reflect release number/date
|
|
|
|
./README.md
|
|
|
|
./ChangeLog
|
|
|
|
./configure.ac (AC_INIT)
|
2014-06-19 10:27:05 -05:00
|
|
|
./src/Makefile.in (-version-info, follow libtool guidelines)
|
2014-05-22 13:45:30 -05:00
|
|
|
|
2014-06-30 14:11:39 -05:00
|
|
|
# make clean
|
2014-05-23 11:15:53 -05:00
|
|
|
# autoreconf
|
|
|
|
|
2014-05-22 13:45:30 -05:00
|
|
|
commit these changes to the release branch
|
|
|
|
|
|
|
|
# git commit -a -m "release number and date updates"
|
|
|
|
# git push
|
|
|
|
|
2014-06-30 14:11:39 -05:00
|
|
|
- prepare to build binaries for each target platform
|
|
|
|
you need to remove libs and headers that might be lingering from previous builds
|
|
|
|
to avoid accidentally including the wrong headers or linking the wrong libs
|
2014-06-19 09:11:21 -05:00
|
|
|
|
2014-06-30 14:11:39 -05:00
|
|
|
- create clean local repo
|
2014-06-19 09:11:21 -05:00
|
|
|
|
2014-06-30 14:11:39 -05:00
|
|
|
- build source distribution tar
|
|
|
|
# ./configure
|
|
|
|
# make dist
|
|
|
|
# openssl sha1 getdns-0.1.2.tar.gz > getdns-0.1.2.tar.gz.sha1
|
|
|
|
# openssl md5 getdns-0.1.2.tar.gz > getdns-0.1.2.tar.gz.md5
|
|
|
|
# gpg --armor --detach-sig --default-key gwiley@verisign.com getdns-0.1.2.tar.gz
|
|
|
|
|
|
|
|
- test the resulting tar by building it and running the regression tests
|
|
|
|
|
|
|
|
- build CentOS binary
|
|
|
|
# tar -xzvf getdns-0.1.2.tar.gz
|
|
|
|
# cd getdns-0.1.2
|
|
|
|
# ./configure --with-libevent --prefix=$HOME/build
|
|
|
|
# make
|
|
|
|
# make install
|
|
|
|
# cd ~/build
|
|
|
|
- fix the libdir path in the *.la files to point to /usr/local/lib
|
|
|
|
- fix the dependency_libs entry in the *.la files to point to /usr/local/lib
|
|
|
|
# fpm -x "*.la" -a native -s dir --rpm-sign -t rpm -n getdns -v 0.1.2 -d "unbound" -d "ldns" -d "libevent" -d "libidn" --prefix /usr/local --vendor "Verisign Inc., NLnet Labs" --license "BSD New" --url "http://www.getdnsapi.net" --description "Modern asynchronous API to the DNS" .
|
|
|
|
- make sure your signing key is in the keyring on the build machine
|
|
|
|
- contents of ~/.rpmmacros
|
|
|
|
%_signature gpg
|
|
|
|
%_gpg_path /root/.gnupg
|
|
|
|
%_gpg_name A6B73532
|
|
|
|
%_gpgbin /usr/bin/gpg
|
|
|
|
|
|
|
|
- name the rpm and checksum files something like this:
|
|
|
|
getdns-0.1.3-1.CentOS_6_5.x86_64.rpm
|
|
|
|
getdns-0.1.3-1.CentOS_6_5.x86_64.rpm.sha1
|
|
|
|
getdns-0.1.3-1.CentOS_6_5.x86_64.rpm.md5
|
|
|
|
- check the signature
|
|
|
|
- install
|
|
|
|
- test
|
|
|
|
|
|
|
|
- build OSX binary disk image
|
2014-06-19 09:11:21 -05:00
|
|
|
|
2014-05-22 13:45:30 -05:00
|
|
|
- build code (no additional libraries, note that regression tests will not build)
|
2014-05-23 11:15:53 -05:00
|
|
|
if you are building a simple binary tar then something like this works
|
|
|
|
# ./configure --prefix=/Users/gwiley/getdnsox/export
|
|
|
|
# make
|
|
|
|
# make install
|
|
|
|
# tar -C /Users/gwiley/getdnsosx/export -cvf getdns-0.1.2.tar *
|
|
|
|
|
2014-05-22 13:45:30 -05:00
|
|
|
- build code (with libevent)
|
2014-05-23 11:15:53 -05:00
|
|
|
# ./configure --with-libevent2
|
|
|
|
|
2014-05-22 13:45:30 -05:00
|
|
|
- run regression tests and verify that alls well
|
|
|
|
|
2014-05-23 11:15:53 -05:00
|
|
|
if you have do do anything even mildly interesting to get the build or install to
|
|
|
|
work then we either have to add it to the README.md or, preferably, fix it
|
|
|
|
and update the branch
|
|
|
|
|
2014-05-23 16:12:52 -05:00
|
|
|
Be careful about tool sets loaded on your build hosts. You may have 'solved'
|
|
|
|
problems while you are working that mask issues with the build for more typical
|
|
|
|
users - this is why we want to build on hosts that are representative of
|
|
|
|
our users.
|
|
|
|
|
2014-05-22 13:45:30 -05:00
|
|
|
- install on each target platform
|
|
|
|
- make sure and use a user that was NOT used for the build, this will uncover
|
|
|
|
any silliness related to absolute paths in the build
|
|
|
|
|
|
|
|
- if a build breaks or an install fails then commit fixes to the relase branch
|
|
|
|
- rebuild EVERY binary using the changed release branch
|
|
|
|
|
2014-06-19 09:11:21 -05:00
|
|
|
- merge branch changes back into master
|
|
|
|
|
2014-05-22 13:45:30 -05:00
|
|
|
- once all binaries are built and tested clean, create source tar ball
|
2014-05-23 16:12:52 -05:00
|
|
|
and the actual package for each platform
|
|
|
|
|
|
|
|
you may need to run this as root to permit the chown
|
|
|
|
# make clean
|
|
|
|
# make dist
|
|
|
|
generates getdns-0.1.2.tar.gz
|
2014-05-22 13:45:30 -05:00
|
|
|
|
2014-06-30 14:11:39 -05:00
|
|
|
- sign each binary/source tar using one or more developers keys
|
|
|
|
- make sure that the keys you use to sign the release are also up to date
|
|
|
|
on the getdnsapi.net site
|
|
|
|
|
2014-05-22 13:45:30 -05:00
|
|
|
- generate checksums for each binary/source tar
|
|
|
|
|
|
|
|
- upload source and binaries to the getdnsapi.net site
|
|
|
|
|
2014-06-19 09:11:21 -05:00
|
|
|
- create a release in the github repository
|
|
|
|
- from the main repo choose 'releases'
|
|
|
|
- choose 'Draft a new release'
|
|
|
|
- use tag v0.x.y to match the branch being released
|
2014-06-30 14:11:39 -05:00
|
|
|
- for a release name use v0.x.y
|
2014-06-19 09:11:21 -05:00
|
|
|
- for description cut/paste the ChangeLog entry
|
2014-06-30 14:11:39 -05:00
|
|
|
- check the 'pre-release' checkbox (unless this is a production release)
|
2014-06-19 09:11:21 -05:00
|
|
|
|
2014-05-22 13:45:30 -05:00
|
|
|
- update getdnsapi.net web site
|
2014-06-19 09:11:21 -05:00
|
|
|
- push binaries to getdnsapi.net
|
|
|
|
/usr/local/www/apache24/data/dist
|
|
|
|
- news entry for the release
|
|
|
|
/usr/local/www/apache24/data/news.html
|
|
|
|
- download links and checksums
|
|
|
|
/usr/local/www/apache24/data/frontpage.html
|
|
|
|
- rebuild website
|
|
|
|
# ./build.sh
|
2014-05-22 13:45:30 -05:00
|
|
|
|
|
|
|
- announce message to
|
|
|
|
getdns mailing list
|
|
|
|
stub-resolvers mailing list
|
|
|
|
Verisign internal via the matrix
|
|
|
|
|
2014-06-19 09:11:21 -05:00
|
|
|
- update the
|
|
|
|
|
2014-05-23 16:12:52 -05:00
|
|
|
|
|
|
|
List of Build Targets
|
|
|
|
---------------------
|
|
|
|
The naming conventions for each of these build products are specific to the
|
|
|
|
platform they target. The result is that the naming seems a little inconsistent,
|
|
|
|
however I felt that it is best to follow naming standards for the platform rather
|
|
|
|
than try to impose a project specific standard across platforms.
|
|
|
|
|
|
|
|
- source tar: getdns-0.1.2.tar.gz
|
|
|
|
- OSX binary package: getdns-0.1.2-OSX_10_8.dmg
|
|
|
|
- RHEL/CentOS: getdns-0.1.0-1.CentOS_6_5.x86_64.rpm
|
|
|
|
- Debian/Ubuntu:
|