[llvm-commits] [zorg] r158352 - /zorg/trunk/zorg/buildbot/builders/DragonEggBuilder.py

Duncan Sands baldrick at free.fr
Mon Jun 11 23:34:57 PDT 2012


Author: baldrick
Date: Tue Jun 12 01:34:57 2012
New Revision: 158352

URL: http://llvm.org/viewvc/llvm-project?rev=158352&view=rev
Log:
Don't fail the build if one of these sites is down.

Modified:
    zorg/trunk/zorg/buildbot/builders/DragonEggBuilder.py

Modified: zorg/trunk/zorg/buildbot/builders/DragonEggBuilder.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/DragonEggBuilder.py?rev=158352&r1=158351&r2=158352&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/DragonEggBuilder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/DragonEggBuilder.py Tue Jun 12 01:34:57 2012
@@ -425,7 +425,7 @@
     # LAPACK.
     f.addStep(ShellCommand(name='wget.lapack',
                            command='wget -N http://www.netlib.org/lapack/lapack-3.4.0.tgz',
-                           haltOnFailure=True, workdir=compilator_dir,
+                           haltOnFailure=False, workdir=compilator_dir,
                            env=env))
     f.addStep(ShellCommand(name='unpack.lapack',
                            command='tar xzf lapack-3.4.0.tgz',
@@ -435,7 +435,7 @@
     # Nist Fortran 77 test suite.
     f.addStep(ShellCommand(name='wget.nist',
                            command='wget -N ftp://ftp.fortran-2000.com/fcvs21_f95.tar.bz2',
-                           haltOnFailure=True, workdir=compilator_dir,
+                           haltOnFailure=False, workdir=compilator_dir,
                            env=env))
     f.addStep(ShellCommand(name='unpack.nist',
                            command='tar xjf fcvs21_f95.tar.bz2',
@@ -445,7 +445,7 @@
     # Polyhedron.
     f.addStep(ShellCommand(name='wget.polyhedron',
                            command='wget -N http://www.polyhedron.com/web_images/documents/pb11.zip',
-                           haltOnFailure=True, workdir=compilator_dir,
+                           haltOnFailure=False, workdir=compilator_dir,
                            env=env))
     f.addStep(ShellCommand(name='unpack.polyhedron',
                            command='unzip -o pb11.zip',
@@ -471,7 +471,7 @@
                            env=env))
     f.addStep(ShellCommand(name='wget.gcc',
                            command='wget -N http://people.csail.mit.edu/smcc/projects/single-file-programs/gcc.c.bz2',
-                           haltOnFailure=True, workdir=compilator_dir,
+                           haltOnFailure=False, workdir=compilator_dir,
                            env=env))
     f.addStep(ShellCommand(name='unpack.gcc',
                            command='bunzip2 -f -k gcc.c.bz2',





More information about the llvm-commits mailing list