File tree Expand file tree Collapse file tree 2 files changed +39
-1
lines changed Expand file tree Collapse file tree 2 files changed +39
-1
lines changed Original file line number Diff line number Diff line change 64
64
- store_artifacts :
65
65
path : ./artifacts
66
66
67
+ e2e_release_ios_fabric :
68
+ executor :
69
+ name : rn/macos
70
+ xcode_version : ' 13.1.0'
71
+ environment :
72
+ RCT_NEW_ARCH_ENABLED : 1
73
+ steps :
74
+ - checkout
75
+ - run :
76
+ name : install applesimutils
77
+ command : |
78
+ HOMEBREW_NO_INSTALL_CLEANUP=1 HOMEBREW_NO_AUTO_UPDATE=1 brew tap wix/brew >/dev/null
79
+ HOMEBREW_NO_INSTALL_CLEANUP=1 HOMEBREW_NO_AUTO_UPDATE=1 brew install applesimutils >/dev/null
80
+ - rn/ios_simulator_start :
81
+ device : ' iPhone 11'
82
+ # - rn/yarn_install
83
+ - run :
84
+ command : yarn install --frozen-lockfile
85
+ name : yarn install
86
+ - run :
87
+ command : yarn bundle:ios
88
+ name : bundle js
89
+ - rn/pod_install :
90
+ pod_install_directory : ' example/ios'
91
+ - run :
92
+ command : curl https://raw.githubusercontent.com/facebook/react-native/6334ac35ac3cbc2c84b2d46d46ec118bf9bf714d/scripts/find-node.sh > node_modules/react-native/scripts/find-node.sh
93
+ name : fix issue with nvm # will be fixed in RN 67 (https://github.com/react-native-community/upgrade-support/issues/138)
94
+ - run :
95
+ command : yarn detox:ios:build:release
96
+ name : build app for e2e tests
97
+ - run :
98
+ command : yarn detox:ios:test:release
99
+ name : run e2e tests
100
+ - store_artifacts :
101
+ path : ./artifacts
102
+
67
103
e2e_release_android :
68
104
executor :
69
105
name : android/android-machine
@@ -125,11 +161,13 @@ workflows:
125
161
jobs :
126
162
- analyse_js
127
163
- e2e_release_ios
164
+ - e2e_release_ios_fabric
128
165
- e2e_release_android
129
166
- publish :
130
167
requires :
131
168
- e2e_release_android
132
169
- e2e_release_ios
170
+ - e2e_release_ios_fabric
133
171
filters :
134
172
branches :
135
173
only : master
Original file line number Diff line number Diff line change @@ -137,7 +137,7 @@ export type IOSNativeProps = $ReadOnly<{|
137
137
/**
138
138
* Sets the preferredDatePickerStyle for picker
139
139
*/
140
- displayIOS ?: IOSDisplay ,
140
+ display ?: IOSDisplay ,
141
141
142
142
/**
143
143
* Is this picker enabled?
You can’t perform that action at this time.
0 commit comments