From d99f661af77dcea440548ff1bace61dd788404ec Mon Sep 17 00:00:00 2001 From: Alex Rickabaugh Date: Wed, 24 Oct 2018 10:04:06 -0700 Subject: [PATCH] build(ivy): properly tag the js_expected_symbol_test rules Previously the rules were tagged ivy-only, but missing the ivy-aot tag which would cause them to run under CI. --- packages/core/test/bundling/animation_world/BUILD.bazel | 1 + packages/core/test/bundling/hello_world/BUILD.bazel | 3 ++- packages/core/test/bundling/todo/BUILD.bazel | 1 + packages/core/test/bundling/todo_r2/BUILD.bazel | 1 + 4 files changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/core/test/bundling/animation_world/BUILD.bazel b/packages/core/test/bundling/animation_world/BUILD.bazel index 0a02bfc4e0..b3b8de3f46 100644 --- a/packages/core/test/bundling/animation_world/BUILD.bazel +++ b/packages/core/test/bundling/animation_world/BUILD.bazel @@ -37,6 +37,7 @@ js_expected_symbol_test( src = ":bundle.min_debug.js", golden = ":bundle.golden_symbols.json", tags = [ + "ivy-aot", "ivy-only", ], ) diff --git a/packages/core/test/bundling/hello_world/BUILD.bazel b/packages/core/test/bundling/hello_world/BUILD.bazel index 1b39e90032..bef351fb84 100644 --- a/packages/core/test/bundling/hello_world/BUILD.bazel +++ b/packages/core/test/bundling/hello_world/BUILD.bazel @@ -59,8 +59,9 @@ js_expected_symbol_test( src = ":bundle.min_debug.js", golden = ":bundle.golden_symbols.json", tags = [ + "ivy-aot", "ivy-only", - ], + ],w ) http_server( diff --git a/packages/core/test/bundling/todo/BUILD.bazel b/packages/core/test/bundling/todo/BUILD.bazel index 677b98ff4a..d7914a4bf4 100644 --- a/packages/core/test/bundling/todo/BUILD.bazel +++ b/packages/core/test/bundling/todo/BUILD.bazel @@ -66,6 +66,7 @@ js_expected_symbol_test( src = ":bundle.min_debug.js", golden = ":bundle.golden_symbols.json", tags = [ + "ivy-aot", "ivy-only", ], ) diff --git a/packages/core/test/bundling/todo_r2/BUILD.bazel b/packages/core/test/bundling/todo_r2/BUILD.bazel index da54122564..53f02464a5 100644 --- a/packages/core/test/bundling/todo_r2/BUILD.bazel +++ b/packages/core/test/bundling/todo_r2/BUILD.bazel @@ -72,6 +72,7 @@ js_expected_symbol_test( src = ":bundle.min_debug.js", golden = ":bundle.golden_symbols.json", tags = [ + "ivy-aot", "ivy-only", ], )