This page provides a list of instructions that must be done in order when doing a release of Narayana.
Check JIRA
- Check all issues resolved.
- Create next point release version if not exists - this is so you can push issues in step 3 below.
- Unresolved issues should be resolved or pushed.
Check Hudson
Ensure no test failures in the group of hudson tests, for the branch you intend to release.
Raise AS7 component upgrade request in Jira
Prepare for a PR to update AS7.
- https://issues.jboss.org/browse/WFLY
- create a new 'component update' issue.
- Ensure the module is set to 'transactions'
- select an appropriate 'fix for'.
- Assign it to yourself.
Do Release
Git Branches (4.17 and 5 only)
Must be done first as the build-release-packages.xml relies on the tag being available
cd $NARAYANA_SRC/scripts
pre-release.sh <next version, e.g: 5.0.0.M3>
Create the AS7 pull request branch and roll the jbosstm/jboss-as branch to next SNAPSHOT (UN-TESTED COMMANDS!!)
First rebase 5_BRANCH, to make the following commands run more smothly:
cd $NARAYANA_SRC/scripts
./rebase-jbossas-branch.sh
Now do this:
BRANCH=4_BRANCH
AS_BRANCH=master
JIRA=AS7-5815
CURRENT=4.17.2.Final
NEXT=4.17.3.Final
git clone git@github.com:jbosstm/jboss-as.git
cd jboss-as
git checkout $BRANCH
git remote add upstream git://github.com/wildfly/wildfly.git
git pull --rebase --ff-only upstream $AS_BRANCH
sed -i "s/$CURRENT-SNAPSHOT/$CURRENT/g" pom.xml
git commit -am "${JIRA} Upgrade Narayana to $CURRENT"
# You now need to squash the two version commits together.
# should use git merge-base $BRANCH upstream/master
# You will need to resolve some merge conflicts. Most likely around version numbers.
git rebase -i HEAD~10
git checkout -b "${JIRA}_Upgrading_Narayana_to_${CURRENT}"
git checkout $BRANCH
sed -i "s/$CURRENT/$NEXT-SNAPSHOT/g" pom.xml
git commit -am "${JIRA} Upgrade Narayana to $NEXT-SNAPSHOT"
git push origin "${JIRA}_Upgrading_Narayana_to_${CURRENT}"
git push origin $BRANCH
Build and release
blacktie windows binaries
CURRENT=<Version to release. e.g 5.0.0.M2>
On Windows:
rem You need to build the windows version separately as we don't support cross compile
git clone git@github.com:jbosstm/blacktie.git
build.bat install -DskipTests
mkdir ~/blacktie/filemgmt.jboss.org/
sshfs -o allow_other blacktie@filemgmt.jboss.org: ~/blacktie/filemgmt.jboss.org/
mkdir -p ~/blacktie/filemgmt.jboss.org/downloads_htdocs/blacktie/$CURRENT/binary/
cp target/blacktie-$CURRENT-vc9x32-bin.zip ~/blacktie/filemgmt.jboss.org/downloads_htdocs/blacktie/$CURRENT/binary/
chmod 755 ~/blacktie/filemgmt.jboss.org/downloads_htdocs/blacktie/$CURRENT/binary/blacktie-$CURRENT-vc9x32-bin.zip
Narayana upload
CURRENT=<Version to release. e.g 5.0.0.M2>
mkdir -p ~/narayana/filemgmt.jboss.org/
On Linux:
sshfs jbosstm@filemgmt.jboss.org: ~/narayana/filemgmt.jboss.org/
On MacOS:
sshfs -o defer_permissions jbosstm@filemgmt.jboss.org: ~/narayana/filemgmt.jboss.org/
git clone git@github.com:jbosstm/narayana.git
cd narayana
git checkout $CURRENT
On Linux:
ant -f build-release-pkgs.xml dist downloads docs magnolia -Drsync=false
On MacOS:
ant -f build-release-pkgs.xml dist downloads docs magnolia
svn branches
#Make sure your checkout has no local changes
svn update
svn status
POINT_VERSION=5
NEXT_POINT_VERSION=6
#Update the version in text files
find . -name \*.java -o -name \*.xml -o -name \*.properties -o -name \*.ent -o -name \INSTALL -o -name \README | grep -v ".svn" | grep -v target | xargs grep -l "4[._]16" | xargs sed -i "s/4\([._]\)16\([._]\)${POINT_VERSION}\([._]\)Final-SNAPSHOT/4\116\2$POINT_VERSION\3Final/"
svn commit -m "Updated to version 4.16.$POINT_VERSION.Final"
#Tag the release:
svn cp https://svn.jboss.org/repos/labs/labs/jbosstm/branches/JBOSSTS_4_16 https://svn.jboss.org/repos/labs/labs/jbosstm/tags/JBOSSTS_4_16_${POINT_VERSION}_Final/ -m "4.16.$POINT_VERSION"
#Bump to next version using similar find to above
find . -name \*.java -o -name \*.xml -o -name \*.properties -o -name \*.ent -o -name \INSTALL -o -name \README | grep -v ".svn" | grep -v target | xargs grep -l "4[._]16" | xargs sed -i "s/4\([._]\)16\([._]\)${POINT_VERSION}\([._]\)Final/4\116\2${NEXT_POINT_VERSION}\3Final-SNAPSHOT/"
svn commit -m "Updated to version 4.16.${NEXT_POINT_VERSION}.Final-SNAPSHOT"
#Update the maven version of jbossts in our fork of JBossAS: https://github.com/jbosstm/jboss-as
git checkout 4_16_BRANCH
git pull --rebase --ff-only
#Check no local changes
git status
sed -i "s/4.16.${POINT_VERSION}.Final-SNAPSHOT/4.16.${NEXT_POINT_VERSION}.Final-SNAPSHOT/g" pom.xml
git commit -am "Updated to 4.16.${NEXT_POINT_VERSION}.Final-SNAPSHOT"
git push
#Build and deploy the release to nexus staging:
mkdir ~/filemgmt.jboss.org/
sshfs -o defer_permissions jbosstm@filemgmt.jboss.org: ~/filemgmt.jboss.org/
svn switch https://svn.jboss.org/repos/labs/labs/jbosstm/tags/JBOSSTS_4_16_${NEXT_POINT_VERSION}_Final/
ant -f build-release-pkgs.xml dist mvn-repository downloads magnolia
Release the artifact through Nexus
- https://repository.jboss.org/nexus/index.html#welcome
- login
- "Staging Repositories"
- Click tickbox for your repo
- Click "Close"
- Don't worry about a description, just click "Close"
- Click tickbox after it is closed
- Click "Release"
- Again a description doesn't matter
Push Upstream
Check that the pull request will work. If it doesn't and it requires Narayana changes you *have* to rev the version number - DON'T attempt to re-release with the same version number:
JIRA=AS7-5815
CURRENT=4.17.2.Final
git clone git@github.com:jbosstm/jboss-as.git
cd jboss-as
git checkout "${JIRA}_Upgrading_Narayana_to_${CURRENT}"
rm -rf ~/.m2/repository/org/jboss/jbossts
rm -rf ~/.m2/repository/org/jboss/narayana
./build.sh clean install
- Raise the pull request using our branch
- Update this job to run our CI over the PR. You need to re-run this every time you change the PR, top make sure it still works.
- Change "Branch Specifier"
- Change branch name in script.
- Once merged, resolve the AS7 Jira issue.
- Once merged, rebase the jbosstm/jboss-as 5_BRANCH|4_BRANCH branch with the updated wildfly master branch
JIRA Release
- Close all issues for the release
- Mark as released (Need admin permissions)
Update Website
Update the Narayana community site:
- Login to Magnolia
- Documentation
- Browse to 'jbosstm/documentation'
- right click on 'downloads' and select 'import'
- browse to the location of the 'website.jbosstm.documentation.4.16.5.Final.xml' file
- Long left click on the file name and replace the '.' with '_'.
- Right click on the new file and click 'move'
- Drag the file to the top of the documentation list.
- Right click on the new page and select 'open page...'
- Check that the page looks right and that the download links work
- Right click on the new page and select 'activate'
- You now need to wait for the page to be moderated before it will appear.
- Downloads
- Browse to 'jbosstm/downloads'
- right click on 'downloads' and select 'import'
- browse to the location of the 'website.jbosstm.downloads.4.16.5.Final.xml' file
Long left click on the file name and replace the '.' with '_'.- Right click on the new file and click 'move'
- Drag the file to the top of the downloads list.
- Right click on the new page and select 'open page...'
- Check that the page looks right and that the download links work
- Right click on the new page and select 'activate'
- You now need to wait for the page to be moderated before it will appear.
- Announcement
- Right click on 'jbosstm' and select 'open page...'
- Click edit on the 'announcement' pane
- Update the announcement for this release.
- Right click on 'jbosstm' and select 'activate changes'
- You now need to wait for the page to be moderated before it will appear.
- Release notes
- Right click on 'jbosstm' and select 'open page...'
- Click edit on the 'getting started' pane on the right-hand-side
- Edit the release notes url to point to the release notes for this version
- Click save
- Right click on 'jbosstm' and select 'activate changes'
- You now need to wait for the page to be moderated before it will appear.
Update CI
Update jobs, to use the new Version (quickstarts, etc).
Start by updating http://172.17.131.2/view/Narayana+BlackTie/job/jenkins-config-sanity-check/ then see what fails.
As per https://issues.jboss.org/browse/JBTM-1728, update the version numbers in http://172.17.131.2/configure
Checked the released Quickstarts
Make sure the released quickstarts run against the released Narayana. Do this by updating this job: http://172.17.131.2/view/Narayana+BlackTie-release/job/release-btny-narayana-quickstarts-taconic
Change:
- Branches to build
- On line bellow " REMEMBER TO uncomment and put back the command that can't be named"
- Replace 'rem' with 'wget'
- replace 'h t t p' with 'http'
- All occurances of the previous release version number with the newly released version number
Promote
NOTE: It is worth waiting for the merge of the pull request before advertising, or at least wait for the merge build notification first ;)
Promote the release through the following channels:
- Email jbossts-announce@lists.jboss.org
- Forum
- Blog: fixversion = "5.0.0.M4" ANDproject in (jbtm) AND priority >= major AND issuetype not in (Bug, task) AND resolution not in ("Duplicate Issue", Rejected, "Won't Fix", "Out of Date", "Cannot Reproduce Bug")
JBoss Transaction SPI
These instructions apply to the maintainance SPI branch:
export CURRENT=7.0.1
export NEXT=7.0.2
git clone git@github.com:jbosstm/jboss-transaction-spi.git
vi pom.xml # remove -SNAPSHOT from $CURRENT
git add pom.xml
git commit -m "Updated to $CURRENT.Final"
git tag $CURRENT
git checkout $CURRENT
mvn deploy
git checkout master
vi pom.xml # change version number to $NEXT.Final-SNAPSHOT
git commit -m "Updated to $NEXT.Final-SNAPSHOT"
git push origin
You then need to go to nexus and release the artifact.