From 52d768f4ad89fd71ea27c4e43dcc802cde4a1d76 Mon Sep 17 00:00:00 2001 From: Paul Wankadia Date: Tue, 16 Jan 2024 16:42:11 +0000 Subject: [PATCH] Try dropping the CPU constraint values on Windows. GitHub Actions should give us 32-bit versus 64-bit Python and then Bazel should use whichever it sees on the system. Change-Id: Ic644188f1ebf33e04f4163ef71cc48e1c8b11efa Reviewed-on: https://code-review.googlesource.com/c/re2/+/62371 Reviewed-by: Alex Chernyakhovsky Reviewed-by: Paul Wankadia --- python/BUILD.bazel | 2 -- 1 file changed, 2 deletions(-) diff --git a/python/BUILD.bazel b/python/BUILD.bazel index 48d7d3f58..6c19b78ba 100644 --- a/python/BUILD.bazel +++ b/python/BUILD.bazel @@ -58,7 +58,6 @@ platform( platform( name = "x64_x86_windows", constraint_values = [ - "@platforms//cpu:x86_32", "@platforms//os:windows", ], ) @@ -66,7 +65,6 @@ platform( platform( name = "x64_windows", constraint_values = [ - "@platforms//cpu:x86_64", "@platforms//os:windows", ], )