Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

M2T-JET/Committer Resources

< M2T-JET
Revision as of 11:31, 1 September 2009 by Pelder.ca.ibm.com (Talk | contribs) (New page: This page is intended for M2T-JET committers and other developers working with the JET source = Builds and Promotion = == Galileo (and Helios?) promote fixes == The Eclipse Jar signing ...)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

This page is intended for M2T-JET committers and other developers working with the JET source

Builds and Promotion

Galileo (and Helios?) promote fixes

The Eclipse Jar signing process is corrupting the org.eclipse.jet_1.0.x.yyyyyyyy.jar.gz file. See Bug 275150. As a work around, perform the following after a successful build, but prior to promotion to the Eclipse download sites:

  1. log into the build server (modeling.eclipse.org) using putty
  2. Use sudo to become the build user.
sudo -u apache -i 

Within the sudo shell, perform the following commands:

  1. Change to the build directory (e.g. /home/www-data/build/modeling/m2t/jet/downloads/drops/x.y.z/build-id).
  2. Use the zip' command to delete the org.eclipse.jet_a.b.c.qualifier.jar.gz from the Master zip (m2t-jet-Master-build-id-or-alias.zip).
  3. Use the md5sum command to recompute the MD5 hash of the master zip file (m2t-jet-Master-build-id-or-alias.zip).
  4. Exit sudo

The following is an example of the commands given to the sudo shell.

cd /home/www-data/build/modeling/m2t/jet/downloads/drops/1.0.1/S200909010949 
zip -d m2t-jet-Master-1.0.1RC2.zip eclipse/plugins/org.eclipse.jet_1.0.1.v200908201022.jar.pack.gz
md5sum m2t-jet-Master-1.0.1RC2.zip > m2t-jet-Master-1.0.1RC2.zip.md5
exit

Finally, promote the build as usual.

Back to the top