From becaf4e6b5e4094b2a3631de0e6a3f6948d32a97 Mon Sep 17 00:00:00 2001 From: Mengwei Liu Date: Thu, 11 Apr 2024 11:52:32 -0700 Subject: [PATCH] Fix build-framework-ios CI job As titled. `build_apple_frameworks.sh` is copying all the exported headers out and in #2934 `//executorch/schema:program` is being moved to `exported_deps` and causing `build_apple_frameworks.sh` to not found it. This PR fixes it by moving it back to `deps`. --- runtime/executor/targets.bzl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/runtime/executor/targets.bzl b/runtime/executor/targets.bzl index 0f451b1a70..46f997a80a 100644 --- a/runtime/executor/targets.bzl +++ b/runtime/executor/targets.bzl @@ -84,6 +84,8 @@ def define_common_targets(): "//executorch/runtime/kernel:operator_registry", "//executorch/runtime/platform:platform", "//executorch/schema:extended_header", + ], + deps = [ "//executorch/schema:program", ], visibility = [