Skip to content

Commit

Permalink
Fix build-framework-ios CI job (#2996)
Browse files Browse the repository at this point in the history
Summary:
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 able to copy generated headers `program_generated.h` and `scalar_type_generated.h`.

This PR fixes it by moving it back to `deps`.

Pull Request resolved: #2996

Reviewed By: kirklandsign

Differential Revision: D56028952

Pulled By: larryliu0820

fbshipit-source-id: 2cd4999154877b0ac7b49cd1f54d518cba34b2f2
  • Loading branch information
larryliu0820 authored and facebook-github-bot committed Apr 11, 2024
1 parent ce344bc commit 3b727a7
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions runtime/executor/targets.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -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 = [
Expand Down

0 comments on commit 3b727a7

Please sign in to comment.