From f0a4deee23984a8f779917bbeaf74a66a0abf592 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Mon, 29 Nov 2010 20:34:27 -0800 Subject: Move "Releasing" to top level This file documents the AltOS release process for all systems. Signed-off-by: Keith Packard --- Releasing | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Releasing (limited to 'Releasing') diff --git a/Releasing b/Releasing new file mode 100644 index 00000000..a7263c61 --- /dev/null +++ b/Releasing @@ -0,0 +1,27 @@ +These are Bdale's notes on how to do a release. + + update the version in configure.ac and commit + + git tag -a + + git-buildpackage --git-ignore-new + + use --git-ignore-new so trash in checked-out tree doesn't + cause the build to fail! + + at this point, we have Debian packages + + make distclean + + ./autogen.sh --with-fat-dir=/home/bdale/web/altusmetrum/AltOS/releases + make fat + + this pushes packages for each platform to web site + + - go edit ~/web/altusmetrum/AltOS/releases/.mdwn to include + release date and explicit ref to dir contents so the AltOS page + shows versioned links, commit and push + + (cd doc ; make publish) + + this pushes fresh documents to the web site -- cgit v1.2.3 From 5f3f11e11dff9b9f4d1dde279c0d474de0de12a5 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Mon, 29 Nov 2010 20:41:49 -0800 Subject: Add minimal release testing plan to Releasing Signed-off-by: Keith Packard --- Releasing | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'Releasing') diff --git a/Releasing b/Releasing index a7263c61..3307b535 100644 --- a/Releasing +++ b/Releasing @@ -25,3 +25,20 @@ These are Bdale's notes on how to do a release. (cd doc ; make publish) this pushes fresh documents to the web site + +Testing before a release + + To verify that a build works, the following need to be checked + on each platform: + + 1) Install package + + 2) Connect TM *and* TD devices. Verify that you can Monitor + Flight from the TD and Configure Telemetrum from the TM. + + 3) Replay Flight, using your favorite .eeprom file. Check + each tab, especially the 'Site Map' tab. Make sure the + sound works. + + 4) Graph Data. Graph a favorite .eeprom file. Make sure you + can zoom in on some region of the graph. -- cgit v1.2.3 From 3cea033ec928c21b9f7b810898ed3c3cc536d2ce Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Fri, 26 Aug 2011 09:41:46 -0600 Subject: get ready for a 1.0.1 release --- Releasing | 4 ++++ configure.ac | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) (limited to 'Releasing') diff --git a/Releasing b/Releasing index 3307b535..edfb5eb4 100644 --- a/Releasing +++ b/Releasing @@ -26,6 +26,10 @@ These are Bdale's notes on how to do a release. this pushes fresh documents to the web site + sudo debian/rules clean + + leave the build tree in an unclutterd state + Testing before a release To verify that a build works, the following need to be checked diff --git a/configure.ac b/configure.ac index f9002508..27d56751 100644 --- a/configure.ac +++ b/configure.ac @@ -18,7 +18,7 @@ dnl dnl Process this file with autoconf to create configure. AC_PREREQ(2.57) -AC_INIT([altos], 1.0) +AC_INIT([altos], 1.0.1) AC_CONFIG_SRCDIR([src/ao.h]) AM_INIT_AUTOMAKE([foreign dist-bzip2]) AM_MAINTAINER_MODE -- cgit v1.2.3 From 9451ae5e4ea6ecfa512ba93197351682d4d043dc Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Fri, 26 Aug 2011 10:51:18 -0600 Subject: update release process docs --- Releasing | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'Releasing') diff --git a/Releasing b/Releasing index edfb5eb4..80d39f6a 100644 --- a/Releasing +++ b/Releasing @@ -4,10 +4,9 @@ These are Bdale's notes on how to do a release. git tag -a - git-buildpackage --git-ignore-new + - make sure checked-out tree is "clean" so git won't complain - use --git-ignore-new so trash in checked-out tree doesn't - cause the build to fail! + git-buildpackage at this point, we have Debian packages @@ -18,6 +17,9 @@ These are Bdale's notes on how to do a release. this pushes packages for each platform to web site + - copy the relevant release notes file from doc/ to + /home/bdale/web/altusmetrum/AltOS/releases/ + - go edit ~/web/altusmetrum/AltOS/releases/.mdwn to include release date and explicit ref to dir contents so the AltOS page shows versioned links, commit and push -- cgit v1.2.3 From 93b8f40bb451c9ec152490d1f431ab18f8ecb7d1 Mon Sep 17 00:00:00 2001 From: Bdale Garbee Date: Fri, 26 Aug 2011 10:52:55 -0600 Subject: more release process doc updates --- Releasing | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Releasing') diff --git a/Releasing b/Releasing index 80d39f6a..4d2f8e71 100644 --- a/Releasing +++ b/Releasing @@ -10,6 +10,8 @@ These are Bdale's notes on how to do a release. at this point, we have Debian packages + git tag debian/ + make distclean ./autogen.sh --with-fat-dir=/home/bdale/web/altusmetrum/AltOS/releases @@ -29,8 +31,10 @@ These are Bdale's notes on how to do a release. this pushes fresh documents to the web site sudo debian/rules clean + git push + git push --tags - leave the build tree in an unclutterd state + push commits and leave the build tree in an uncluttered state Testing before a release -- cgit v1.2.3