Skip to content

Commit c5bbb39

Browse files
authored
Bump dependencies used by CircleCI (#451)
1 parent d0ad5c2 commit c5bbb39

File tree

460 files changed

+1452
-71637
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

460 files changed

+1452
-71637
lines changed

.circleci/config.yml

Lines changed: 18 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,48 @@
11
version: 2.1
22

33
aliases:
4-
- &xcode-version 13.2.0
5-
- &node-version '16.14'
6-
- &yarn-version '1.22.18'
4+
- &xcode-version 14.3.1
5+
- &node-version '18.16'
6+
- &yarn-version '1.22.19'
77

88
orbs:
9-
node: circleci/node@4.7.0
10-
browser-tools: circleci/browser-tools@1.2.3
9+
node: circleci/node@5.1.0
10+
browser-tools: circleci/browser-tools@1.4.1
1111

1212
executors:
1313
default:
1414
docker:
15-
- image: cimg/node:16.14
15+
- image: cimg/node:18.16
1616
working_directory: ~/react-native-url-polyfill
17+
environment:
18+
NODE_OPTIONS: '--openssl-legacy-provider'
1719
node-browsers:
1820
docker:
19-
- image: cimg/node:16.14-browsers
21+
- image: cimg/node:18.16-browsers
22+
environment:
23+
NODE_OPTIONS: '--openssl-legacy-provider'
2024
xcode-11:
2125
macos:
2226
xcode: 11.7.0
2327
environment:
2428
HOMEBREW_NO_AUTO_UPDATE: 1
2529
XCODE_VERSION: 11.7.0
30+
NODE_OPTIONS: '--openssl-legacy-provider'
2631
xcode:
2732
macos:
2833
xcode: *xcode-version
2934
environment:
3035
HOMEBREW_NO_AUTO_UPDATE: 1
3136
XCODE_VERSION: *xcode-version
37+
NODE_OPTIONS: '--openssl-legacy-provider'
3238
android:
3339
docker:
34-
- image: cimg/android:2021.10.2
40+
- image: cimg/android:2023.06.1
3541
resource_class: large
3642
environment:
3743
JAVA_TOOL_OPTIONS: '-Xmx1536m'
3844
GRADLE_OPTS: '-Dorg.gradle.daemon=false -Dorg.gradle.workers.max=2'
45+
NODE_OPTIONS: '--openssl-legacy-provider'
3946

4047
commands:
4148
save-cache-yarn:
@@ -139,7 +146,6 @@ commands:
139146
steps:
140147
- node/install:
141148
node-version: *node-version
142-
install-npm: false
143149
install-yarn: << parameters.install-yarn >>
144150
yarn-version: *yarn-version
145151

@@ -297,20 +303,20 @@ workflows:
297303
- test-ios:
298304
matrix:
299305
parameters:
300-
react-native-version: ['0.67', '0.68']
306+
react-native-version: ['0.68']
301307
requires:
302308
- lint
303309
- test-js
304310
- test-hermes-ios:
305311
matrix:
306312
parameters:
307-
react-native-version: ['0.67', '0.68']
313+
react-native-version: ['0.68']
308314
requires:
309315
- test-ios-<< matrix.react-native-version >>
310316
- test-hermes-android:
311317
matrix:
312318
parameters:
313-
react-native-version: ['0.67', '0.68']
319+
react-native-version: ['0.68']
314320
requires:
315321
- lint
316322
- test-js

platforms/detox/.detoxrc.js

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
/** @type {Detox.DetoxConfig} */
2+
module.exports = {
3+
testRunner: {
4+
args: {
5+
$0: 'jest',
6+
config: './e2e/jest.config.js',
7+
},
8+
jest: {
9+
setupTimeout: 120000,
10+
},
11+
},
12+
apps: {
13+
'ios.debug': {
14+
type: 'ios.app',
15+
binaryPath: 'ios/build/Build/Products/Debug-iphonesimulator/Detox.app',
16+
build:
17+
'xcodebuild -workspace ios/Detox.xcworkspace -scheme Detox -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build',
18+
},
19+
'ios.release': {
20+
type: 'ios.app',
21+
binaryPath: 'ios/build/Build/Products/Release-iphonesimulator/Detox.app',
22+
build:
23+
'xcodebuild -workspace ios/Detox.xcworkspace -scheme Detox -configuration Release -sdk iphonesimulator -derivedDataPath ios/build',
24+
},
25+
'android.debug': {
26+
type: 'android.apk',
27+
binaryPath: 'android/app/build/outputs/apk/debug/app-debug.apk',
28+
build:
29+
'cd android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug',
30+
reversePorts: [8081],
31+
},
32+
'android.release': {
33+
type: 'android.apk',
34+
binaryPath: 'android/app/build/outputs/apk/release/app-release.apk',
35+
build:
36+
'cd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release',
37+
},
38+
},
39+
devices: {
40+
simulator: {
41+
type: 'ios.simulator',
42+
device: {
43+
type: 'iPhone 14 Pro',
44+
},
45+
},
46+
attached: {
47+
type: 'android.attached',
48+
device: {
49+
adbName: '.*',
50+
},
51+
},
52+
emulator: {
53+
type: 'android.emulator',
54+
device: {
55+
avdName: 'Pixel_3a_API_30_x86',
56+
},
57+
},
58+
},
59+
configurations: {
60+
'ios.sim.debug': {
61+
device: 'simulator',
62+
app: 'ios.debug',
63+
},
64+
'ios.sim.release': {
65+
device: 'simulator',
66+
app: 'ios.release',
67+
},
68+
'android.att.debug': {
69+
device: 'attached',
70+
app: 'android.debug',
71+
},
72+
'android.att.release': {
73+
device: 'attached',
74+
app: 'android.release',
75+
},
76+
'android.emu.debug': {
77+
device: 'emulator',
78+
app: 'android.debug',
79+
},
80+
'android.emu.release': {
81+
device: 'emulator',
82+
app: 'android.release',
83+
},
84+
},
85+
};

platforms/detox/.detoxrc.json

Lines changed: 0 additions & 22 deletions
This file was deleted.

platforms/detox/config.json

Lines changed: 0 additions & 8 deletions
This file was deleted.

platforms/detox/environment.js

Lines changed: 0 additions & 23 deletions
This file was deleted.

platforms/expo/43/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "app",
2+
"name": "expo-43",
33
"version": "1.0.0",
44
"main": "index.js",
55
"scripts": {

platforms/expo/44/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "app",
2+
"name": "expo-44",
33
"version": "1.0.0",
44
"main": "index.js",
55
"scripts": {

platforms/react-native/0.61/.buckconfig

Lines changed: 0 additions & 6 deletions
This file was deleted.

platforms/react-native/0.61/.eslintrc.js

Lines changed: 0 additions & 8 deletions
This file was deleted.

0 commit comments

Comments
 (0)