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"

(Basic overview of platform builds)
(Redirected page to Platform-releng/Platform Build)
 
(69 intermediate revisions by 2 users not shown)
Line 1: Line 1:
==Basic overview of platform builds==
+
#REDIRECT [[Platform-releng/Platform_Build]]
 
+
Integration builds are in crontab of build user on build machine
+
 
+
Integration builds run from the tags of org.eclipse.releng
+
<pre>
+
0 8 * * 2 cd /builds; /home/users/releng/buildTools/eclipse36/runIBuild-skipPerf
+
</pre>
+
 
+
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 * * 4,6 cd /builds; /home/users/releng/buildTools/eclipse36/runNBuild-skipPerf
+
</pre>
+
 
+
3.5.x maintenance builds run from R3_5_maintenance branch of org.eclipse.releng
+
<pre>
+
0 8 * * 3 cd /builds; /home/users/releng/buildTools/eclipse35x/runMBuild
+
</pre>
+
 
+
The test machines for these builds are
+
<pre>
+
ejwin1 (winxp with 1.5 vm)
+
ejwin2 (winxp with 1.5 vm
+
ejlnx1 (RHEL 5.3 with 1.5 vm)
+
ejlnx2 (RHEL 5.3 with 1.6 vm)
+
epwin2 (winxp with 1.5 vm)
+
eplnx1 (SLES 10 with 1.6 vm)
+
eplnx2 (RHEL 5.2 with 1.6 vm)
+
trelenggtk (database machine)
+
godel (cvs test machine)
+
eclipsebuildserv (build machine)
+
</pre>
+
 
+
The windows tests machines crash every so often. They can just be rebooted and logged into as the build user.  The event logs don't indicate that anything is wrong with the build.
+
 
+
A script runs once a week to clean the test machines
+
<pre>
+
0 18 * * 0 /home/users/releng/buildTools/scripts/buildblaster.sh
+
</pre>
+
 
+
 
+
Older builds
+
3.4.2 test builds run from tags in 3.4.x maintenance branch
+
<pre>
+
cd /builds;  /home/users/releng/buildTools/eclipse34x/runKimTestMBuild
+
</pre>
+
 
+
3.2.x test builds
+
<pre>
+
cd /builds; /home/users/releng/buildTools/eclipse32x/runMTestBuild-skipPerf
+
</pre>
+

Latest revision as of 05:14, 10 February 2022

Back to the top