Skip to content

Commit 2cf1d71

Browse files
committed
fix: exclude dependency_resolution_build_test that depends on WIT analyzer
The test/integration:dependency_resolution_build_test target includes validate_consumer_deps as a dependency, which was causing the WIT analyzer to still run despite exclusions. Exclude this parent target from both Linux and macOS CI builds.
1 parent 2dbf6a7 commit 2cf1d71

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,8 @@ jobs:
132132
-//test_examples/dependencies/consumer:consumer_component_wasm_lib_release \
133133
-//test_wit_deps/consumer:consumer_component_wasm_lib_release \
134134
-//test_wit_deps/consumer:check_deps \
135-
-//test/integration:validate_consumer_deps
135+
-//test/integration:validate_consumer_deps \
136+
-//test/integration:dependency_resolution_build_test
136137
137138
- name: Run Tests
138139
run: bazel test --test_output=errors -- //test/integration:basic_component_build_test //test/integration:basic_component_validation //test/unit:unit_tests
@@ -233,7 +234,8 @@ jobs:
233234
-//test_examples/dependencies/consumer:consumer_component_wasm_lib_release \
234235
-//test_wit_deps/consumer:consumer_component_wasm_lib_release \
235236
-//test_wit_deps/consumer:check_deps \
236-
-//test/integration:validate_consumer_deps
237+
-//test/integration:validate_consumer_deps \
238+
-//test/integration:dependency_resolution_build_test
237239
238240
- name: Run Tests
239241
run: bazel test --test_output=errors -- //test/integration:basic_component_build_test //test/integration:basic_component_validation //test/unit:unit_tests

0 commit comments

Comments
 (0)