forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: use Xcode beta globally feat: use callstack/hermes-visionos fork feat: test Hermes feat: reset cache keys fix: use callstack/hermes fix: use correct hermes source tarball fix: use never xcode version test only JSC fix: change Xcode version fix: use m1 executor feat: add cocoapods cache fix: remove hermes from cache keys fix: rbenv reset cache test: use 15.2 fix: run visionos CI on every PR (#62) chore: disable some of upstream pipelines (#33) * chore: disable some of upstream pipelines * tests: update snapshot for visionOS * chore: disable more jobs, fix isVisionOS * fix: Keyboard.js, adjust pipeline_selection.js * feat: run iOS tests every night chore: disable android tests (#39) fix: prevent from running the testAll.yml on main (#41) fix: ci on main (#44) fix: remove windows jobs (#126) * fix: remove windows jobs * fix: sync jobs.yml
- Loading branch information
1 parent
3847ac6
commit ae6f903
Showing
10 changed files
with
1,609 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# ------------------------- | ||
# EXECUTORS | ||
# ------------------------- | ||
executors: | ||
nodelts: | ||
<<: *defaults | ||
docker: | ||
- image: *nodelts_image | ||
resource_class: "large" | ||
nodeprevlts: | ||
<<: *defaults | ||
docker: | ||
- image: *nodeprevlts_image | ||
resource_class: "large" | ||
# Executor with Node & Java used to inspect and lint | ||
node-browsers-small: | ||
<<: *defaults | ||
docker: | ||
- image: *nodelts_browser_image | ||
resource_class: "small" | ||
node-browsers-medium: | ||
<<: *defaults | ||
docker: | ||
- image: *nodelts_browser_image | ||
resource_class: "medium" | ||
reactnativeandroid-xlarge: | ||
<<: *android-defaults | ||
resource_class: "xlarge" | ||
reactnativeandroid-large: | ||
<<: *android-defaults | ||
resource_class: "large" | ||
reactnativeios: | ||
<<: *defaults | ||
macos: | ||
xcode: *xcode_version | ||
resource_class: macos.m1.medium.gen1 | ||
environment: | ||
- RCT_BUILD_HERMES_FROM_SOURCE: true | ||
reactnativeios-lts: | ||
<<: *defaults | ||
macos: | ||
xcode: '14.3.1' | ||
resource_class: macos.x86.medium.gen2 | ||
environment: | ||
- RCT_BUILD_HERMES_FROM_SOURCE: true | ||
reactnative-visionos: | ||
<<: *defaults | ||
resource_class: macos.m1.medium.gen1 | ||
macos: | ||
xcode: '15.2' | ||
environment: | ||
- RCT_BUILD_HERMES_FROM_SOURCE: true |
Oops, something went wrong.