These instructions cover steps needed to create new Robot Framework releases. Many individual steps are automated, but we do not want to automate the whole procedure because it would be hard to react if something goes terribly wrong. When applicable, the steps are listed as commands that can be copied and executed on the command line.
Contents
Some tasks are automated using Invoke. Generating releases requires it to be installed:
pip install invoke
Invoke is executed from the command line like:
inv[oke] task [options]
Run invoke
without arguments for help. All tasks can be listed using
invoke --list
and they are defined in tasks.py file.
Testing
- Check CI status at http://robot.radiaatto.ri.fi/.
- Run acceptance tests with additional operating systems and interpreters if needed. See atest/README.rst for details.
Generate API docs (including JavaDocs) and see is there is something that should be committed:
doc/api/generate.py git diff doc/api git commit doc/api -m "Regenerated" # if needed
Repository status
Check that you have nothing left to commit, pull, or push:
git status git pull git push
Clean up:
invoke clean
Set
$VERSION
shell variable to ease copy-pasting further commands:VERSION=x.y.z
Tag release:
invoke tag_release $VERSION
This updates version information in src/robot/version.py and in pom.xml, creates tag, and pushes changes.
Version back to
dev
:invoke set_version --push dev
If you are going to create distributions on the same repository, you may want to post-pone this step until they are done.
Checkout earlier created tag if necessary:
git checkout $VERSION
Source distribution
Create and deploy:
invoke sdist --deploy
Verify that https://pypi.python.org/pypi/robotframework looks good.
Test installation (add
--pre
with pre-releases):pip install robotframework --upgrade
Windows installers
Create 32bit and 64bit variants on suitable machines/interpreters:
invoke wininst
Manually upload to https://pypi.python.org/pypi/robotframework/.
JAR distribution
Create:
invoke jar
Test that JAR is not totally borken:
java -jar dist/robotframework-$VERSION.jar --version java -jar dist/robotframework-$VERSION.jar atest/testdata/misc/pass_and_fail.robot
Upload JAR to Sonatype
Sonatype offers a service where users can upload JARs and they will be synced to the maven central repository. Below are the instructions to upload the JAR.
Prequisites:
Install maven
Create a Sonatype account
Add these lines (filled with the Sonatype account information) to your
settings.xml
:<servers> <server> <id>sonatype-nexus-staging</id> <username></username> <password></password> </server> </servers>
Create a PGP key
Apply for publish rights to org.robotframework project. This will take some time from them to accept.
Run command:
mvn gpg:sign-and-deploy-file -Dfile=dist/robotframework-$VERSION.jar -DpomFile=pom.xml -Durl=http://oss.sonatype.org/service/local/staging/deploy/maven2/ -DrepositoryId=sonatype-nexus-staging
Go to https://oss.sonatype.org/index.html#welcome, log in with Sonatype credentials, find the staging repository and do close & release
After that, the released JAR is synced to Maven central within an hour.
User Guide
Create package (updates also library docs):
doc/userguide/ug2html.py zip
Update docs at http://robotframework.org/robotframework/:
git checkout gh-pages invoke add_docs $VERSION --push git checkout master
Generate a template for the release notes:
invoke release_notes --login <github login> --password <github password>
Create a new release at https://github.com/robotframework/robotframework/releases
- Twitter http://twitter.com/robotframework
- Users and announcements mailing lists
- Robot Framework LinkedIn group https://www.linkedin.com/groups/Robot-Framework-3710899
- With major releases can also consider:
Set version back to
dev
if you did not do it as part of tagging:invoke set_version --push dev
Close issue tracker milestone.
Update API doc version at https://readthedocs.org/projects/robot-framework/.