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

Difference between revisions of "How Autobuild Gets Dependencies"

m (Added tag for left menu, plus category)
Line 1: Line 1:
 +
{{#eclipseproject:technology.higgins}}
 
# Nightly build runs buildLoop target of autoBuild.xml script from org.eclipse.higgins.auto/runtime/
 
# Nightly build runs buildLoop target of autoBuild.xml script from org.eclipse.higgins.auto/runtime/
 
# buildLoop iterates through each project in org.eclipse.higgins.auto/runtime/projects.xml and checks for the existence of the project at the cvs location of the project defined in org.eclipse.higgins.auto/runtime/resourceLocation.xml
 
# buildLoop iterates through each project in org.eclipse.higgins.auto/runtime/projects.xml and checks for the existence of the project at the cvs location of the project defined in org.eclipse.higgins.auto/runtime/resourceLocation.xml
Line 7: Line 8:
  
 
== Links ==
 
== Links ==
* [http://eclipse.org/higgins Higgins Home]
 
 
* [[Automated Builds]]
 
* [[Automated Builds]]
 +
 +
[[Category:Higgins Developer Info]]

Revision as of 08:15, 16 March 2008

{{#eclipseproject:technology.higgins}}

  1. Nightly build runs buildLoop target of autoBuild.xml script from org.eclipse.higgins.auto/runtime/
  2. buildLoop iterates through each project in org.eclipse.higgins.auto/runtime/projects.xml and checks for the existence of the project at the cvs location of the project defined in org.eclipse.higgins.auto/runtime/resourceLocation.xml
  3. If the project exists then it will be checked out from cvs
  4. Downloads all 3rd party dependencies defined in dependencies.xml (<remoteLibs> element) of checked out project from the library location in the org.eclipse.higgins.auto/runtime/resourceLocation.xml
  5. Also checks out all the project dependencies defined in dependencies.xml (<higginsProjects> element) by repeating the above 3 steps
  6. run other targets to complete the build

Links

Back to the top