Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.
Eclipse Build Available RSS Feeds
Contents
Eclipse Build Available RSS Feeds
Recent changes to this document
Getting Started With RSS Feeds
To get started using this code, I'd suggest extracting everything from CVS and having a look at the examples provided:
cvs -d :pserver:anonymous@dev.eclipse.org:/cvsroot/eclipse -q checkout -r releng_test \ -d org.eclipse.build.tools org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools
For details on extracting the code using Eclipse, see Eclipse Build Available RSS Feeds Getting Started.
Make sure you get the releng_test branch, not HEAD, if you want the latest implementation.
In there, you'll find scripts_rss/ which includes ant script examples for:
- publishing a feed (feedPublish.xml)
- manipulating a feed, eg., updating a feed with a new entry, changing attributes on an existing entry, or just querying a feed for some value (feedManipulation.xml)
- watching a feed and responding to changes (feedWatch.xml)
These all use feedTools.jar, with sources in src_rss/. The properties files used by these scripts are in properties/. You'll see three for feedPublish.*.properties (publishing 3 different feeds) and two for feedWatch.*.properties (two projects watching upstream feeds). You'll also find a README in there which provides more details.
You can also look at the sample data in the data/ folder, which provides three feeds (Eclipse, EMF, UML2).
The feed schema is in the schema/ folder. The Ecore model and genmodel created from the schema and used for the feed validator are in model/, and the feed validator code is best accessed from the feedValidator.xml script in scripts_rss/ and the feedValidator.jar in the root.
Note: The code cited above is the example/reference implementation. For an live working implementation, see the examples below.
Sample Feeds
- Samples feed files can be seen in CVS here: /cvsroot/eclipse/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/data/
- Most of the contents of the <build/> node are optional. The schema for these examples is located here. For tasks used to create/modify/view or respond to feeds, see #Latest_Code.
Support For Eclipse.org Jar Signing
So that we can identify which projects' builds are signed, the <build/> node can take an attribute for jars, thus:
<feed xmlns="http://www.w3.org/2005/Atom"> ... <summary> <build xmlns="http://www.eclipse.org/2006/BuildFeed" callisto="COMPLETE" href="http://download.eclipse.org/downloads/drops/S-3.2RC5-200605191206" jars="UNSIGNED" type="S"> ... </summary> </feed>
I'm thinking of 5 status codes, assuming the current jar signing process continues as proposed:
- NONE (or "") - no status available or not participating
- UNSIGNED - no jar signage available or done yet
- SIGNREADY - jars promoted to eclipse.org, ready for signing
- BUILDREADY - signed on eclipse.org, ready to be collected and bundled as zips and copied to UM site
- SIGNED - signed & bundled on download page and on UM site
Support For Build Type, Branch & ID
So that we can identify what type of build a given entry is, these values can be specified for a type attribute:
<build xmlns="http://www.eclipse.org/2006/BuildFeed" href="http://download.eclipse.org/downloads/drops/S-3.2RC5-200605191206" cvsbranch="HEAD" branch="3.2.0" datetime="200605191206" type="S">
- N : Nightly
- I : Integration
- M : Maintenance
- S : Stable (Milestone or Release Candidate)
- R : Release
If the property buildType is not specified, the ant task will attempt to guess the build type based on the buildID, by looking for, like this:
this.buildType = buildID.replaceAll("[^NIMSR]", NS); //$NON-NLS-1$ if (this.buildType.length()>1) { this.buildType=this.buildType.substring(0, 1); }
In addition, there are attributes available for branch, cvsbranch and datetime. Branch is a 3-number branch id, like 3.0.0 or 2.2.1. CVS branch is a string like "HEAD" or "R3_2_maintenance", and is optional. Datetime is a 12-digit number defining YYYYMMDDhhmm, the date and time associated with the build.
Support For Coordinated Releases
So that we can identify which projects' have been posted to Callisto/Europa/Whatnot, there's an element in the <build/> node, thus:
<build xmlns="http://www.eclipse.org/2006/BuildFeed" href="http://download.eclipse.org/downloads/drops/S-3.2RC5-200605191206" type="S"> <coordinated status="COMPLETE">More information here</coordinated>
Status codes are limited to:
Code | Purpose/Description |
NONE (or "") | not part of Callisto or unknown status |
BUILDCOMPLETE | Have you finished your RC1 bits? |
UMSITEREADY | Have you placed those bits in your update site? |
CALLISTOSITEREADY | Have you updated the features.xml file in the Callisto CVS directory? |
COMPLETE | Are you ready for RC1 to be declared? |
Additional information, if applicable, can be placed in the text field of the node, which might include:
Note | Purpose/Description |
2006-05-02T20:50:00Z | When do you expect to finish them? |
TPTP | If you're waiting for another project, which one(s)? |
Where To Publish
In order to ensure that your feed data is as current as your promoted bits, it's recommended that you publish your feed to the same place you publish your zips/jars. For the MDT example, this is http://download.eclipse.org/modeling/mdt/feeds/builds-*.xml, and the CVS archived versions of the files are in /cvsroot/org.eclipse/www/modeling/mdt/feeds/.
It is recommended that you publish one feed per component that people might want to watch uniquely. For MDT, this means 5 feeds (at time of writing).
Actual Feeds
These are actual feeds, currently being published. If you publish a feed that's not listed here, please add it.
A sample layout for linking to your feed from your downloads page is here: UML2 Downloads.
A sample icon to use is here: Atom 1.0 icon.
- http://download.eclipse.org/eclipse/downloads/builds-eclipse-3.3.xml (Eclipse 3.3.x)
- http://www.eclipse.org/modeling/emf/feeds/ (List of EMF feeds)
- http://www.eclipse.org/modeling/mdt/feeds/ (List of MDT feeds)
- http://www.eclipse.org/modeling/m2t/feeds/ (List of M2T feeds)
- http://www.eclipse.org/emft/feeds/ (List of EMFT feeds; components will be removed as they move to MDT, M2T or EMF)
Working Examples
These are working examples implemented and in use, based on the samples provided in org.eclipse.build.tools.
In this scenario, EMF publishes a scheduled build every Thursday at 00:00, promotes the build to eclipse.org at 01:00, and then UML2, knowing there's an EMF build every week, starts watching the EMF feed, checking hourly at 02:00, 03:00 and 04:00, in order to pick up the latest driver to do its weekly build. As our build server is at IBM, this delay is necessary to ensure that code committed to eclipse.org has time to propagate across the nodes and to the IBM mirrors. Usually the mirrors replicate between 02:00 and 03:00, causing the UML2 build to start at 03:00.
This is only one use case. For more responsive feed watching, cron-based checks could be done 24h a day, multiple times an hour, and more than once a week.
The most recent version of the scripts documented here is in /cvsroot/modeling/releng-common/tools/scripts/.
MDT & EMFT Components
Currently, MDT & EMFT components only publish RSS, they do not listen to upstream RSS feed(s). Setup is fairly straightforward.
1. promoteToEclipse.sh
(see line 349), is passed the property RSS=1 (or executed using the -rssonly
flag).
2. The promote script calls out to feedPublish.xml
using feedPublish.mdt.properties
.
EMF
Publishing an EMF build automatically is done in two steps, both fired by crontab:
# M build every Thu (4); runs as web user, www-data 0 0 * * 4 sudo -u www-data /home/www-data/emf-build/scripts/start_cron.sh -proj emf -buildType M \ -tagBuild true -branchCVS HEAD -noperf -runJDK14Tests -runJDK50Tests -runOldTests > \ $HOME/cron_logs/start_cron.sh.emf.M.txt 2>&1
- start_cron.sh (cron wrapper for start.sh)
- start.sh (start a build)
# promote M build + update feed (among other things) 0 1 * * 4 /home/www-data/emf-build/scripts/promoteToEclipse_cron.sh -proj emf -branch 2.2.1 -type M \ -user nickb -userIES nboldt -announce > $HOME/cron_logs/promoteToEclipse_cron.sh.emf.M.txt 2>&1
- promoteToEclipse_cron.sh (cron wrapper to publish a build)
- promoteToEclipse.sh (publish a build)
- promoteToEclipse.emf.properties (properties)
One of the steps in promoting a build is to check out the latest copy of the feed from CVS, update it, commit it back to CVS, and scp it to eclipse.org. This is done by having promoteToEclipse.sh
fire feedPublish.xml
:
- feedPublish.xml (publish a feed)
- feedPublish.emf.properties (properties)
UML2
In this scenario, UML2 listens from 02:00 to 04:00 by running feedWatch.sh
, but has chosen to manually verify and promote builds (also using promoteToEclipse.sh
):
# respond to emf feed change; runs as web user, www-data 0 2,3,4 * * 4 cd /home/www-data/emf-build/scripts/ && sudo -u www-data \ /home/www-data/emf-build/scripts/feedWatch.sh -proj uml2 -branchCVS R2_0_maintenance > \ $HOME/cron_logs/feedWatch.sh.uml2.txt 2>&1
- feedWatch.sh (check cached copy of a feed for specific changes on remote host)
- feedWatch.uml2.xml (run UML2-specific check for upstream EMF feed changes)
- feedWatch.uml2.properties (properties)
If a change is seen in the feed, run the respondToFeedChanged target in feedWatch.xml
, which has been customized to update dependencies then run a build:
<target name="spawnBuild"> <echo message="Spawn new build:"/> <echo message="/home/www-data/emf-build/scripts/start_cron.sh -proj uml2 ${buildType} ${buildAlias} -branchCVS ${branchCVS} ${runOptions} -URL '${feedWatchAction.TheValue.2}/${feedWatchAction.TheValue.1}' -URL '${feedWatchAction.TheValue.3}'"/> <exec spawn="true" executable="bash" resolveexecutable="true"> <arg line="/home/www-data/emf-build/scripts/start_cron.sh -proj uml2 ${buildType} ${buildAlias} -branchCVS ${branchCVS} ${runOptions} -URL '${feedWatchAction.TheValue.2}/${feedWatchAction.TheValue.1}' -URL '${feedWatchAction.TheValue.3}'"/> </exec> </target>
Latest Code
The latest code - shell and ant scripts, ant task code, XML Schema for the feed, and sample data - can be found in CVS, currently in the releng_test branch. This includes:
- Shell & Ant tasks to create, update, query & publish feeds (CVS, SCP)
- Shell & Ant tasks to respond to feed changes (eg., sending an email, firing another ant task, launching a shell process with <exec>)
- Ant task to validate a feed file against an XML schema (requires EMF). Note that the samples and schema are NOT the latest, but the tool WILL work with newer xml and xsd files.
- The latest XML Schema is here:
Discussion / Bugzilla
- Here is a list of the bugzillas associated with RSS:
- https://bugs.eclipse.org/bugs/show_bug.cgi?id=164390 (RSS for eclipse.org releases)
- https://bugs.eclipse.org/bugs/show_bug.cgi?id=141152 (proposed feed enhancements)
- https://bugs.eclipse.org/bugs/show_bug.cgi?id=130150 ("latest" links for project downloads)
-
https://bugs.eclipse.org/bugs/show_bug.cgi?id=124172(build stack automation) -
https://bugs.eclipse.org/bugs/show_bug.cgi?id=116912(RSS release train) -
https://bugs.eclipse.org/bugs/show_bug.cgi?id=85485(Platform RSS feeds) - more bugs... (query bugzilla for "rss")
- new bug (open a new bug in Platform > Releng and assign it to Nick Boldt)
Additional Information
- For more on the Atom 1.0 spec, see http://www.ietf.org/rfc/rfc4287.txt.