[cig-commits] r7077 - cs/buildbot/trunk/buildbot

leif at geodynamics.org leif at geodynamics.org
Tue Jun 5 17:47:40 PDT 2007


Author: leif
Date: 2007-06-05 17:47:40 -0700 (Tue, 05 Jun 2007)
New Revision: 7077

Modified:
   cs/buildbot/trunk/buildbot/bs.py
Log:
More fixes for Gale and MAG.

Modified: cs/buildbot/trunk/buildbot/bs.py
===================================================================
--- cs/buildbot/trunk/buildbot/bs.py	2007-06-06 00:30:24 UTC (rev 7076)
+++ cs/buildbot/trunk/buildbot/bs.py	2007-06-06 00:47:40 UTC (rev 7077)
@@ -33,6 +33,7 @@
               descriptionDone=desc + ["compile"],
               command="make all",
               workdir=workdir,
+              env=env,
               haltOnFailure=True),
             ]
         return steps
@@ -120,6 +121,7 @@
               descriptionDone=desc + ["configuration"],
               command=["./configure.py"] + configureArgs,
               workdir=workdir,
+              env=env,
               haltOnFailure=True,
               ),
             s(step.ShellCommand,
@@ -127,6 +129,7 @@
               descriptionDone=["tests"],
               command=["./scons/scons.py", "test"],
               workdir=workdir,
+              env=env,
               ),
             ]
         
@@ -147,6 +150,7 @@
               description=["installing"] + desc,
               descriptionDone=desc + ["installation"],
               workdir=workdir,
+              env=env,
               ),
             ]
         return steps
@@ -215,6 +219,7 @@
               description=["installing"] + desc,
               descriptionDone=desc + ["installation"],
               workdir=workdir,
+              env=env,
               ),
             ]
         return steps



More information about the cig-commits mailing list