Skip to content

Commit abdfb6a

Browse files
committed
fix: align macOS CI exclusions with Linux CI for consistency
Update macOS CI job to exclude the same problematic Rust targets that were excluded from Linux CI job: - file_processor_cli_wasm_lib_release_host (dependency conflicts) - checksum_updater_wasm_bin (compiler flag issues) - checksum_updater_wasm_wizer_component_release_wasm_lib_release_host (build conflicts) This ensures both platforms validate the hermetic Go toolchain consistently without being blocked by unrelated Rust compilation issues.
1 parent d0bc135 commit abdfb6a

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,10 @@ jobs:
121121
//test/unit/... \
122122
//test/integration/... \
123123
//docs-site/... \
124-
-//examples/cpp_component/multi_component_system:analytics_service
124+
-//examples/cpp_component/multi_component_system:analytics_service \
125+
-//examples/cli_tool_example:file_processor_cli_wasm_lib_release_host \
126+
-//tools/checksum_updater_wasm:checksum_updater_wasm_bin \
127+
-//tools/checksum_updater_wasm:checksum_updater_wasm_wizer_component_release_wasm_lib_release_host
125128
126129
- name: Run Tests
127130
run: bazel test --test_output=errors -- //test/integration:basic_component_build_test //test/integration:basic_component_validation //test/unit:unit_tests
@@ -208,7 +211,10 @@ jobs:
208211
-//examples/simple_oci_test/... \
209212
-//examples/microservices_architecture/... \
210213
-//test/integration:validate_consumer_deps \
211-
-//test_wit_deps/consumer:check_deps
214+
-//test_wit_deps/consumer:check_deps \
215+
-//examples/cli_tool_example:file_processor_cli_wasm_lib_release_host \
216+
-//tools/checksum_updater_wasm:checksum_updater_wasm_bin \
217+
-//tools/checksum_updater_wasm:checksum_updater_wasm_wizer_component_release_wasm_lib_release_host
212218
213219
- name: Run Tests
214220
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)