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

Making Builds Reproducible

Revision as of 13:26, 13 September 2006 by Overholt.redhat.com (Talk | contribs)

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

Making Builds Reproducible

In an ideal world, all it would take to build a project on top of the SDK would be something like this:

0. Assume SDK is available

  1. check out project releng plugin
  2. java -cp $SDK/startup.jar org.eclipse.core.launcher.Main -application org.eclipse.ant.core.antRunner -Dcomponent=<whatever> -DbaseLocation=$SDK -DskipFetch=true
  3. do whatever with the resulting zip(s)

Back to the top