Skip to content

Commit 1be2ac3

Browse files
cipolleschifacebook-github-bot
authored andcommitted
Try to disable test on HermesC for linux (#39123)
Summary: Build hermesc for linu is failing on a test. Let's try to disable testing of Hermes in React Native CI as it is expensive and not RN responsibility. ## Changelog: [Internal] - Disable Hermes C++ tests in React Native CI Pull Request resolved: #39123 Test Plan: CircleCI get back to green Reviewed By: cortinico Differential Revision: D48597809 Pulled By: cipolleschi fbshipit-source-id: 5eed8dff47d5adaf0da683b19fb4dfca3a4bc219
1 parent f9e936e commit 1be2ac3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.circleci/configurations/jobs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -881,10 +881,10 @@ jobs:
881881
echo 'Skipping; Clean "/tmp/hermes/linux64-bin" to rebuild.'
882882
else
883883
cd /tmp/hermes
884-
cmake -S hermes -B build -DHERMES_STATIC_LINK=ON -DCMAKE_BUILD_TYPE=Release \
884+
cmake -S hermes -B build -DHERMES_STATIC_LINK=ON -DCMAKE_BUILD_TYPE=Release -DHERMES_ENABLE_TEST_SUITE=OFF \
885885
-DCMAKE_INTERPROCEDURAL_OPTIMIZATION=True -DCMAKE_CXX_FLAGS=-s -DCMAKE_C_FLAGS=-s \
886886
-DCMAKE_EXE_LINKER_FLAGS="-Wl,--whole-archive -lpthread -Wl,--no-whole-archive"
887-
cmake --build build --target check-hermes -j 4
887+
cmake --build build --target hermesc -j 4
888888
cp /tmp/hermes/build/bin/hermesc /tmp/hermes/linux64-bin/.
889889
fi
890890
- save_cache:

0 commit comments

Comments
 (0)