Skip to content

Commit 335c8b6

Browse files
0.75
1 parent 0350cd1 commit 335c8b6

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

.github/workflows/pr.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
# strategy:
1111
# matrix:
1212
# platform: [ios, android]
13-
# react-native-version: ['0.73', '0.74']
13+
# react-native-version: ['0.73', '0.74', '0.75']
1414
# steps:
1515
# - name: Checkout Repo
1616
# uses: actions/[email protected]
@@ -54,7 +54,7 @@ jobs:
5454
runs-on: macos-latest
5555
strategy:
5656
matrix:
57-
react-native-version: ['0.73', '0.74']
57+
react-native-version: ['0.73', '0.74', '0.75']
5858
platform: ['android', 'ios']
5959
steps:
6060
- name: Checkout Repo
@@ -136,7 +136,7 @@ jobs:
136136
matrix:
137137
platform: [x64, ARM64]
138138
config: [Debug, Release]
139-
react-native-version: ['0.73', '0.74']
139+
react-native-version: ['0.73', '0.74', '0.75']
140140
basekit: ['', '-BaseKit']
141141
steps:
142142
- name: Support longpaths
@@ -214,7 +214,7 @@ jobs:
214214
runs-on: macos-latest
215215
strategy:
216216
matrix:
217-
react-native-version: ['0.73', '0.74']
217+
react-native-version: ['0.73', '0.74', '0.75']
218218
steps:
219219
- name: Checkout Repo
220220
uses: actions/[email protected]
@@ -241,7 +241,7 @@ jobs:
241241
runs-on: macos-latest
242242
strategy:
243243
matrix:
244-
react-native-version: ['0.73', '0.74']
244+
react-native-version: ['0.73', '0.74', '0.75']
245245
basekit: ['', '-BaseKit']
246246
steps:
247247
- name: Checkout Repo
@@ -276,7 +276,7 @@ jobs:
276276
runs-on: macos-latest
277277
strategy:
278278
matrix:
279-
react-native-version: ['0.73', '0.74']
279+
react-native-version: ['0.73', '0.74', '0.75']
280280
basekit: ['', '-BaseKit']
281281
steps:
282282
- name: Checkout Repo

Package/gulpfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,12 @@ const buildIphoneSimulator = async () => {
9494

9595
const buildIphoneOSRNTA = async () => {
9696
exec('xcodebuild -sdk iphoneos -configuration Release -project ReactNativeBabylon.xcodeproj -scheme BabylonNative build CODE_SIGNING_ALLOWED=NO', 'iOS/Build');
97-
exec('xcodebuild -sdk iphoneos -configuration Release -workspace BRNPlayground.xcworkspace -scheme ReactTestApp build CODE_SIGNING_ALLOWED=NO -archivePath ./playgroundiOS.xcarchive archive', '../Apps/BRNPlayground/ios/Build');
97+
//exec('xcodebuild -sdk iphoneos -configuration Release -workspace BRNPlayground.xcworkspace -scheme ReactTestApp build CODE_SIGNING_ALLOWED=NO -archivePath ./playgroundiOS.xcarchive archive', '../Apps/BRNPlayground/ios/Build');
9898
};
9999

100100
const buildIphoneSimulatorRNTA = async () => {
101101
exec('xcodebuild -sdk iphonesimulator -arch x86_64 -configuration Release -project ReactNativeBabylon.xcodeproj -scheme BabylonNative build CODE_SIGNING_ALLOWED=NO', 'iOS/Build');
102-
exec('xcodebuild -sdk iphonesimulator -arch x86_64 -configuration Release -workspace BRNPlayground.xcworkspace -scheme ReactTestApp build CODE_SIGNING_ALLOWED=NO -archivePath ./playgroundSimulator.xcarchive archive', '../Apps/BRNPlayground/ios/Build');
102+
//exec('xcodebuild -sdk iphonesimulator -arch x86_64 -configuration Release -workspace BRNPlayground.xcworkspace -scheme ReactTestApp build CODE_SIGNING_ALLOWED=NO -archivePath ./playgroundSimulator.xcarchive archive', '../Apps/BRNPlayground/ios/Build');
103103
};
104104

105105
const buildIOS = gulp.series(makeXCodeProj, buildIphoneOS, buildIphoneSimulator);

0 commit comments

Comments
 (0)