Skip to content

Commit

Permalink
fix: make sure we can build hermes when working against stable
Browse files Browse the repository at this point in the history
  • Loading branch information
Riccardo Cipolleschi committed Jul 19, 2022
1 parent a19578d commit d6be1af
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .circleci/config.yml
Expand Up @@ -937,8 +937,17 @@ jobs:
name: Download Hermes tarball
command: |
node scripts/hermes/prepare-hermes-for-build
cp sdks/download/* $HERMES_WS_DIR/download/.
cp -r sdks/hermes/* $HERMES_WS_DIR/hermes/.
# If Hermes is not built from source, we don't have these folders.
DOWNLOAD_FOLDER=sdks/download/
if [[ -d $DOWNLOAD_FOLDER ]]; then
cp $DOWNLOAD_FOLDER* $HERMES_WS_DIR/download/.
fi
HERMES_FOLDER=sdks/hermes/
if [[ -d $HERMES_FOLDER ]]; then
cp -r $HERMES_FOLDER* $HERMES_WS_DIR/hermes/.
fi
- save_cache:
key: v1-hermes-{{ .Environment.CIRCLE_JOB }}-{{ checksum "/tmp/hermes/hermesversion" }}
paths:
Expand Down
1 change: 1 addition & 0 deletions scripts/hermes/hermes-utils.js
Expand Up @@ -192,6 +192,7 @@ function isOnAReleaseTag() {

function shouldBuildHermesFromSource() {
const hermesTag = readHermesTag();

return (
isOnAReleaseBranch() ||
isOnAReleaseTag() ||
Expand Down

0 comments on commit d6be1af

Please sign in to comment.