aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Prichard <rprichard@google.com>2023-06-08 21:36:24 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-06-08 21:36:24 +0000
commitb59220f313a931fbd0d6f1568b668f4667ed733b (patch)
treea3537d1c8842286450124d0752381265cd9f49a7
parentc73636dcc1d1c439c4987e033ac5fdd30d886fa5 (diff)
parent7725ed4b1c3951951cd9b0022d2a3b8599ff8f49 (diff)
downloadcpython3-b59220f313a931fbd0d6f1568b668f4667ed733b.tar.gz
Prefer the MSBuild in C:\VS over the one in Program Files. am: 5c60119f0d am: 7725ed4b1c
Original change: https://android-review.googlesource.com/c/platform/external/python/cpython3/+/2619245 Change-Id: I971a22a14141cd158ab4d881d59401a61f66ba3a Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--kokoro/kokoro_build.cmd6
1 files changed, 6 insertions, 0 deletions
diff --git a/kokoro/kokoro_build.cmd b/kokoro/kokoro_build.cmd
index 7b7bb7ba25..095f593f12 100644
--- a/kokoro/kokoro_build.cmd
+++ b/kokoro/kokoro_build.cmd
@@ -20,6 +20,12 @@ set PYTHON_SRC=%~dp0..
:: (It could leave Cygwin at the very end, but that's less of a problem.)
set PATH=%PATH:C:\cygwin64\bin;=%
+:: The Kokoro image has two copies of MSBuild installed. Prefer the one in
+:: C:\VS\MSBuild over the one in
+:: "C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\MSBuild"
+:: See https://yaqs.corp.google.com/eng/q/8657098259782696960#a1.
+if exist C:\VS\MSBuild\Current\Bin\amd64\MSBuild.exe (set "PATH=C:\VS\MSBuild\Current\Bin\amd64;%PATH%")
+
:: When we're actually running in the Kokoro environment, the git checkouts are
:: not owned by the current user, so when the Python build scripts query info
:: about them, git fails. Fix this by disabling git's safe directory checking.