We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ea322e commit 88a681cCopy full SHA for 88a681c
.github/workflows/build.yml
@@ -53,7 +53,7 @@ jobs:
53
path: |
54
hermes-src
55
hermes-build
56
- key: ${{ runner.os }}-hermes-${{ env.HERMES_VERSION }}
+ key: ${{ runner.os }}-hermes-${{ env.HERMES_VERSION }}-clang
57
58
- name: Build Hermes (if not cached)
59
if: steps.hermes-cache.outputs.cache-hit != 'true'
@@ -64,7 +64,11 @@ jobs:
64
# Remove .git directory immediately to save ~100MB in cache
65
rm -rf .git
66
cd ..
67
- cmake -S hermes-src -B hermes-build -DCMAKE_BUILD_TYPE=Release -G Ninja
+ cmake -S hermes-src -B hermes-build \
68
+ -DCMAKE_BUILD_TYPE=Release \
69
+ -DCMAKE_C_COMPILER=clang \
70
+ -DCMAKE_CXX_COMPILER=clang++ \
71
+ -G Ninja
72
cmake --build hermes-build --config Release
73
74
- name: Install npm dependencies
0 commit comments