Skip to main content

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.

Jump to: navigation, search

Difference between revisions of "STP/Build/OnEclipseInfrastructure"

< STP‎ | Build
(New page: {| border="0" cellspacing="15" valign="top" style="width:100%;" |-valign="top" |style="width:100%;"| <h1>Step Zero: Build Infrastructure Access</h1> Before you can do anything on the Ecl...)
 
Line 30: Line 30:
 
<h1>Step Two: Check you have a Platform</h1>
 
<h1>Step Two: Check you have a Platform</h1>
 
The platforms for the build live in the shared directory <tt><b>/shared/stp/platforms</b></tt>. These get made coming up to a milestone release and are composed of all the dependencies of the project(s), expanded out to what is effectively an Eclipse installation. You can see a list of the dependencies [http://wiki.eclipse.org/STP/Build/BuildOnMyMachine#3.5_Stream_Platform here].
 
The platforms for the build live in the shared directory <tt><b>/shared/stp/platforms</b></tt>. These get made coming up to a milestone release and are composed of all the dependencies of the project(s), expanded out to what is effectively an Eclipse installation. You can see a list of the dependencies [http://wiki.eclipse.org/STP/Build/BuildOnMyMachine#3.5_Stream_Platform here].
 +
 +
If you do not see the platform you are looking for, please go ahead and make one!
 +
|}
 +
 +
{| border="0" cellspacing="15" valign="top" style="width:100%;"
 +
|-valign="top"
 +
|style="width:100%;"|
 +
<h1>Step Three: Check you have a Platform</h1>
 +
The platforms for the build live in the shared directory <tt><b>/shared/stp/platforms</b></tt>. These get made coming up to a milestone release and are composed of all the dependencies of the project(s), expanded out to what is effectively an Eclipse installation. You can see a list of the dependencies [http://wiki.eclipse.org/STP/Build/BuildOnMyMachine#3.5_Stream_Platform here].
 +
 +
If you do not see the platform you are looking for, please go ahead and make one!
 +
|}
 +
 +
{| border="0" cellspacing="15" valign="top" style="width:100%;"
 +
|-valign="top"
 +
|style="width:100%;"|
 +
<h1>Step Three: Build Your Project</h1>
 +
Just follow [http://wiki.eclipse.org/STP/Build/BuildOnMyMachine#Step_Two:_Check_Out_Your_Project Step 2] and [http://wiki.eclipse.org/STP/Build/BuildOnMyMachine#Step_Three:_Build_Your_Project Step 3] as outlined on the [[STP/Build/BuildOnMyMachine|local machine build page]]
 
|}
 
|}

Revision as of 00:32, 10 December 2008

Step Zero: Build Infrastructure Access

Before you can do anything on the Eclipse Foundation infrastructure, you need to have been granted ssh access to build.eclipse.org. This is something that you need to apply for and which must be okayed by the project PMC. It's not something that is given out lightly by the foundation, and is usually reserved for those who have explicit build responsibilities. If you think you need this kind of access, mail the PMC with your reasons.

Step One: Check Your Environment

To do the build, you will need to have the correct shell PATH set up. It's easiest to just edit your .bashrc file in your home directory and add the right paths:

export ANT_HOME=/shared/stp/apps/apache-ant-1.7.1 export JAVA_HOME=/shared/stp/apps/ibm-java2-sdk-5.0-6.0-linux-ppc export RUBY_HOME=/shared/common/ruby-1.8.7 export PATH=${ANT_HOME}/bin:${RUBY_HOME}/bin:${JAVA_HOME}/bin:$PATH

Then incant source ~/.bashrc and you will be ready to go.

Step Two: Check you have a Platform

The platforms for the build live in the shared directory /shared/stp/platforms. These get made coming up to a milestone release and are composed of all the dependencies of the project(s), expanded out to what is effectively an Eclipse installation. You can see a list of the dependencies here.

If you do not see the platform you are looking for, please go ahead and make one!

Step Three: Check you have a Platform

The platforms for the build live in the shared directory /shared/stp/platforms. These get made coming up to a milestone release and are composed of all the dependencies of the project(s), expanded out to what is effectively an Eclipse installation. You can see a list of the dependencies here.

If you do not see the platform you are looking for, please go ahead and make one!

Step Three: Build Your Project

Just follow Step 2 and Step 3 as outlined on the local machine build page

Back to the top