[zorg] r344571 - [buildbot, windows] Pass the python path for the new windows buildbot correctly
Stella Stamenova via llvm-commits
llvm-commits at lists.llvm.org
Mon Oct 15 15:50:43 PDT 2018
Author: stella.stamenova
Date: Mon Oct 15 15:50:43 2018
New Revision: 344571
URL: http://llvm.org/viewvc/llvm-project?rev=344571&view=rev
Log:
[buildbot, windows] Pass the python path for the new windows buildbot correctly
Summary: Right now the path is passed to CMake as a string without quotes causing CMake to fail to find python
Reviewers: asmith, gkistanova
Reviewed By: gkistanova
Subscribers: llvm-commits
Differential Revision: https://reviews.llvm.org/D53159
Modified:
zorg/trunk/buildbot/osuosl/master/config/builders.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=344571&r1=344570&r2=344571&view=diff
==============================================================================
--- zorg/trunk/buildbot/osuosl/master/config/builders.py (original)
+++ zorg/trunk/buildbot/osuosl/master/config/builders.py Mon Oct 15 15:50:43 2018
@@ -993,8 +993,7 @@ def _get_lldb_builders():
'category' : 'lldb',
'factory': LLDBBuilder.getLLDBWindowsCMakeBuildFactory(
clean=True,
- python_source_dir="C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\Python36_64",
- vs='%VS150COMNTOOLS%',
+ python_source_dir=r'"C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python36_64"',
target_arch='x64',
test=True,
extra_cmake_args=['-DLLVM_ENABLE_ASSERTIONS=OFF'])}
More information about the llvm-commits
mailing list