Skip to content

Commit 32327cc

Browse files
cipolleschiRiccardo Cipolleschi
andauthored
[LOCAL] Fix hermesc for linux (#37591)
Co-authored-by: Riccardo Cipolleschi <[email protected]>
1 parent 52d2065 commit 32327cc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.circleci/config.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1135,7 +1135,7 @@ jobs:
11351135
- image: debian:11
11361136
environment:
11371137
- HERMES_WS_DIR: *hermes_workspace_root
1138-
- HERMES_VERSION_FILE: "sdks/.hermesversion"
1138+
- HERMES_VERSION_FILE: "packages/react-native/sdks/.hermesversion"
11391139
- BUILD_FROM_SOURCE: true
11401140
steps:
11411141
- run:
@@ -1154,8 +1154,10 @@ jobs:
11541154
mkdir -p "/tmp/hermes" "/tmp/hermes/download" "/tmp/hermes/hermes"
11551155
11561156
if [ -f "$HERMES_VERSION_FILE" ]; then
1157+
echo "Hermes version file found. Using the latest commit"
11571158
cat $HERMES_VERSION_FILE > /tmp/hermes/hermesversion
11581159
else
1160+
echo "No hermes version file found. Using the latest commit"
11591161
HERMES_TAG_SHA=$(git ls-remote https://github.com/facebook/hermes main | cut -f 1 | tr -d '[:space:]')
11601162
echo $HERMES_TAG_SHA > /tmp/hermes/hermesversion
11611163
fi

0 commit comments

Comments
 (0)