-
Notifications
You must be signed in to change notification settings - Fork 153
Add Hermes CI coverage #1736
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
CedricGuillemet
wants to merge
15
commits into
BabylonJS:master
Choose a base branch
from
CedricGuillemet:hermes-integration
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Add Hermes CI coverage #1736
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
e9e1dd4
CI: add Hermes coverage
CedricGuillemet 845d0f3
CI: fix Hermes coverage jobs
CedricGuillemet 94f3bbd
CI: build Hermes host tools from JsRuntimeHost
CedricGuillemet a74eb00
Fix Playground globals for Hermes
CedricGuillemet 1c682a5
CI: skip Win32 Hermes visual validation
CedricGuillemet 47cf941
CI: add Ubuntu clang Hermes
CedricGuillemet c405ef2
CI: skip Linux Hermes module-load test
CedricGuillemet ee81caf
CI: enable Win32 Hermes validation
CedricGuillemet c670f5c
Fix validation globals for Hermes
CedricGuillemet 0879a08
CI: enable Linux Hermes test steps
CedricGuillemet 201d8f1
Merge branch 'master' of https://github.com/BabylonJS/BabylonNative i…
CedricGuillemet ce4c0eb
Fix Linux Hermes module-load baseline
CedricGuillemet 4e6618d
Merge remote-tracking branch 'upstream/master' into hermes-integration
CedricGuillemet 7c24fe0
Merge upstream/master into hermes-integration
CedricGuillemet bb73cee
use cross compilation from JSRuntimehost
CedricGuillemet File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -53,8 +53,8 @@ FetchContent_Declare(ios-cmake | |
| GIT_TAG 4.5.0 | ||
| EXCLUDE_FROM_ALL) | ||
| FetchContent_Declare(JsRuntimeHost | ||
| GIT_REPOSITORY https://github.com/BabylonJS/JsRuntimeHost.git | ||
| GIT_TAG 272f6a9f3de78f7c4cd8a838ae9655c81fc4881a) | ||
| GIT_REPOSITORY https://github.com/CedricGuillemet/JsRuntimeHost.git | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Putting a note here just to make sure it doesn't get forgotten - update to the new commit after the JsRuntimeHost PR is merged. |
||
| GIT_TAG hermes-integration) | ||
|
CedricGuillemet marked this conversation as resolved.
|
||
| FetchContent_Declare(metal-cpp | ||
| GIT_REPOSITORY https://github.com/bkaradzic/metal-cpp.git | ||
| GIT_TAG metal-cpp_26 | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is the Hermes compiler (hermesc) only required to load Hermes bytecode? I thought this first round of changes was for loading JS bundles only? Does Hermes support loading either JS or ByteCode, and is this a platform specific question?