[zorg] r259225 - Small fix for Libiomp5Builder and set clean to false for builders clang-atom-d525-fedora-rel and clang-atom-d525-fedora.
Galina Kistanova via llvm-commits
llvm-commits at lists.llvm.org
Fri Jan 29 11:09:03 PST 2016
Author: gkistanova
Date: Fri Jan 29 13:09:03 2016
New Revision: 259225
URL: http://llvm.org/viewvc/llvm-project?rev=259225&view=rev
Log:
Small fix for Libiomp5Builder and set clean to false for builders clang-atom-d525-fedora-rel and clang-atom-d525-fedora.
Patch by Fedorova Vera.
Modified:
zorg/trunk/buildbot/osuosl/master/config/builders.py
zorg/trunk/zorg/buildbot/builders/Libiomp5Builder.py
Modified: zorg/trunk/buildbot/osuosl/master/config/builders.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/buildbot/osuosl/master/config/builders.py?rev=259225&r1=259224&r2=259225&view=diff
==============================================================================
--- zorg/trunk/buildbot/osuosl/master/config/builders.py (original)
+++ zorg/trunk/buildbot/osuosl/master/config/builders.py Fri Jan 29 13:09:03 2016
@@ -149,7 +149,7 @@ def _get_clang_builders():
'slavenames':["atom1-buildbot"],
'builddir':"clang-atom-d525-fedora-rel",
'factory' : ClangBuilder.getClangCMakeBuildFactory(
- clean=True,
+ clean=False,
checkout_compiler_rt=False,
useTwoStage=False,
stage1_config='Release',
@@ -912,7 +912,7 @@ def _get_experimental_scheduled_builders
'slavenames':["atom-buildbot"],
'builddir':"clang-atom-d525-fedora",
'factory' : ClangBuilder.getClangCMakeBuildFactory(
- clean=True,
+ clean=False,
checkout_compiler_rt=False,
useTwoStage=False,
stage1_config='Debug',
Modified: zorg/trunk/zorg/buildbot/builders/Libiomp5Builder.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/Libiomp5Builder.py?rev=259225&r1=259224&r2=259225&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/Libiomp5Builder.py (original)
+++ zorg/trunk/zorg/buildbot/builders/Libiomp5Builder.py Fri Jan 29 13:09:03 2016
@@ -62,7 +62,7 @@ def getLibompCMakeBuildFactory(clean=Tru
# CMake llvm
f.addStep(ShellCommand(name='cmake llvm',
command=["cmake", "../"+llvm_srcdir,
- "-G Ninja",
+ "-G", "Ninja",
"-DCMAKE_C_COMPILER="+c_compiler,
"-DCMAKE_CXX_COMPILER="+cxx_compiler],
haltOnFailure=True,
More information about the llvm-commits
mailing list