From e64a444c0448cc11804cee8e0b0ad5a2c1792f60 Mon Sep 17 00:00:00 2001 From: antonio Date: Wed, 2 Sep 2020 21:27:24 -0400 Subject: [PATCH] test: Exclude wasm_vm_test from CI by making it a "manual" test. (#207) The wee v8 build times out in CI under --config=asan because the machine the job is scheduled on is too small. Signed-off-by: Antonio Vicente --- test/extensions/common/wasm/BUILD | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/test/extensions/common/wasm/BUILD b/test/extensions/common/wasm/BUILD index e85cf73322e4..313b9b5f36ed 100644 --- a/test/extensions/common/wasm/BUILD +++ b/test/extensions/common/wasm/BUILD @@ -15,7 +15,10 @@ envoy_cc_test( "//test/extensions/common/wasm/test_data:modules", ], # wasm (wee v8 etc) will not compile on Windows - tags = ["skip_on_windows"], + tags = [ + "manual", # wee v8 build times out on CI. + "skip_on_windows", + ], deps = [ "//source/extensions/common/wasm:wasm_vm_lib", "//test/test_common:environment_lib",