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 "Platform-releng/Obsolete/Platform-releng-basics"

m
m
Line 7: Line 7:
  
 
Nightly builds run from HEAD of org.eclipse.releng
 
Nightly builds run from HEAD of org.eclipse.releng
 +
<pre>
 
0 20 * * 1,2,3,5,0 cd /builds; /home/users/releng/buildTools/eclipse36/runNBuild-skipPerf
 
0 20 * * 1,2,3,5,0 cd /builds; /home/users/releng/buildTools/eclipse36/runNBuild-skipPerf
 
0 20 * * 4,6 cd /builds; /home/users/releng/buildTools/eclipse36/runNBuild-skipPerf
 
0 20 * * 4,6 cd /builds; /home/users/releng/buildTools/eclipse36/runNBuild-skipPerf
 +
</pre>
  
 
The test machines for these builds are  
 
The test machines for these builds are  
Line 24: Line 26:
  
 
A script runs once a week to clean the test machines
 
A script runs once a week to clean the test machines
 +
<pre>
 
0 18 * * 0 /home/users/releng/buildTools/scripts/buildblaster.sh
 
0 18 * * 0 /home/users/releng/buildTools/scripts/buildblaster.sh
 +
</pre>
  
  
 
Older builds
 
Older builds
 
3.4.2 test builds run from tags in 3.4.x maintenance branch
 
3.4.2 test builds run from tags in 3.4.x maintenance branch
 +
<pre>
 
cd /builds;  /home/users/releng/buildTools/eclipse34x/runKimTestMBuild
 
cd /builds;  /home/users/releng/buildTools/eclipse34x/runKimTestMBuild
 +
</pre>
  
 
3.2.x test builds
 
3.2.x test builds
 +
<pre>
 
cd /builds; /home/users/releng/buildTools/eclipse32x/runMTestBuild-skipPerf
 
cd /builds; /home/users/releng/buildTools/eclipse32x/runMTestBuild-skipPerf
 +
</pre>

Revision as of 15:23, 30 June 2009

Basic overview of platform builds

Integration builds are in crontab of build user on build machine

Integration builds run from the tags of org.eclipse.releng 0 8 * * 2 cd /builds; /home/users/releng/buildTools/eclipse36/runIBuild-skipPerf

Nightly builds run from HEAD of org.eclipse.releng

0 20 * * 1,2,3,5,0 cd /builds; /home/users/releng/buildTools/eclipse36/runNBuild-skipPerf
0 20 * * 4,6 cd /builds; /home/users/releng/buildTools/eclipse36/runNBuild-skipPerf

The test machines for these builds are ejwin1 ejwin2 ejlnx1 ejlnx2 epwin2 epwin3 eplnx1 eplnx2 trelenggtk (database machine) godel (cvs test machine) eclipsebuildserv (build machine)

A script runs once a week to clean the test machines

0 18 * * 0 /home/users/releng/buildTools/scripts/buildblaster.sh


Older builds 3.4.2 test builds run from tags in 3.4.x maintenance branch

cd /builds;  /home/users/releng/buildTools/eclipse34x/runKimTestMBuild

3.2.x test builds

cd /builds; /home/users/releng/buildTools/eclipse32x/runMTestBuild-skipPerf

Back to the top