From 15f9975e37ac51acf218f3a2985a860d50220c98 Mon Sep 17 00:00:00 2001 From: Yun Peng Date: Mon, 17 Jun 2019 16:54:32 +0200 Subject: [PATCH] Enable rules_python on Windows on Bazel CI Targets under //rules_python/... still won't build because subpar doesn't work on Windows yet. `//experimental/examples/wheel:wheel_test` is broken on Windows --- .bazelci/presubmit.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.bazelci/presubmit.yml b/.bazelci/presubmit.yml index 4a6248dd11..ab4a88225a 100644 --- a/.bazelci/presubmit.yml +++ b/.bazelci/presubmit.yml @@ -15,3 +15,17 @@ platforms: - "..." test_targets: - "..." + windows: + build_flags: + - "--enable_runfiles" + build_targets: + - "--" + - "..." + - "-//rules_python/..." + test_flags: + - "--enable_runfiles" # Need runfiles tree for test + test_targets: + - "--" + - "..." + - "-//rules_python/..." + - "-//experimental/examples/wheel:wheel_test"