Skip to content

Commit

Permalink
Store Hermes Debug Symbols inside CircleCI (#33779)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: #33779

This diff adds a `store_artifacts` to CircleCI so the Hermes debug symbols are retained and can be used to symbolicate native crashes for Hermes.

Changelog:
[Internal] [Changed] - Store Hermes Debug Symbols inside CircleCI

Reviewed By: cipolleschi

Differential Revision: D36201978

fbshipit-source-id: ef9a71e2953180aef5caea9f5eb0047190ed6198
  • Loading branch information
cortinico authored and facebook-github-bot committed May 6, 2022
1 parent 1160127 commit 6e2fea8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1166,6 +1166,11 @@ jobs:
# END: Stables and nightlies

- run: node ./scripts/publish-npm.js << parameters.publish_npm_args >>
- run:
name: Zip Hermes Native Symbols
command: zip -r /tmp/hermes-native-symbols.zip ~/react-native/ReactAndroid/hermes-engine/build/intermediates/cmake/
- store_artifacts:
path: /tmp/hermes-native-symbols.zip

# START: Commitlies
# Provide a react-native package for this commit as a Circle CI release artifact.
Expand Down

0 comments on commit 6e2fea8

Please sign in to comment.