-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathconfig.yml
More file actions
237 lines (206 loc) · 5.87 KB
/
config.yml
File metadata and controls
237 lines (206 loc) · 5.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
version: 2.1
# Default VM config to be used for macOS builds
macos_config: &macos_config
macos:
xcode: 16.0.0
resource_class: macos.m1.large.gen1
shell: /bin/bash --login -eo pipefail
setup_env_file: &setup_env_file
run:
working_directory: example/
name: Setup .env
command: sh scripts/generateEnv.sh
executors:
default:
docker:
- image: cimg/node:22.14.0
working_directory: ~/project
orbs:
android: circleci/android@2.4.0
node: circleci/node@5.1.0
# Always run job
run_always: &run_always
filters:
tags:
only: /.*/
commands:
attach_project:
steps:
- attach_workspace:
at: ~/project
jobs:
install-dependencies:
<<: *macos_config
steps:
- checkout
- attach_project
- node/install:
node-version: 22.14.0
- run:
name: Install dependencies
command: |
corepack enable
yarn install
- save_cache:
key: dependencies-{{ checksum "package.json" }}
paths: node_modules
- save_cache:
key: dependencies-example-{{ checksum "example/package.json" }}
paths: example/node_modules
- persist_to_workspace:
root: .
paths: .
lint:
executor: default
steps:
- attach_project
- run:
name: Lint files
command: |
yarn lint
typescript:
executor: default
steps:
- attach_project
- run:
name: Typecheck files
command: |
yarn typescript
unit-tests:
executor: default
steps:
- attach_project
- run:
name: Run unit tests
command: |
yarn test --coverage
- store_artifacts:
path: coverage
destination: coverage
build-package:
executor: default
steps:
- attach_project
- run:
name: Build package
command: |
yarn prepare
# Build and Test android version of module
android-e2e-test:
environment:
GRADLE_OPTS: '-Dorg.gradle.jvmargs="-Xmx2048m -XX:+HeapDumpOnOutOfMemoryError"'
JAVA_OPTS: '-Xms512m -Xmx1024m'
executor:
name: android/android-machine
tag: default
working_directory: ~/project
steps:
- attach_project
- <<: *setup_env_file
- run:
name: Install Maestro
command: curl -Ls "https://get.maestro.mobile.dev" | bash
- run:
working_directory: examples/example/test
name: Build android
command: yarn run build:android
- android/create-avd:
avd-name: Android_29
system-image: system-images;android-29;default;x86
install: true
- android/start-emulator:
avd-name: Android_29
no-window: true
post-emulator-launch-assemble-command: echo Emulator Started
- run:
name: Install app on emulator
command: |
adb install -r ~/project/examples/example/android/app/build/outputs/apk/release/app-release.apk
- run:
working_directory: examples/example/test
name: Run UI Tests
command: yarn run test:android
- store_artifacts:
path: ~/.maestro/tests
destination: maestro-tests
# Build the Test App used for UI Testing and save is to the workspace. This allows it to be used by other jobs.
ios-e2e-test:
<<: *macos_config
steps:
- attach_project
- <<: *setup_env_file
- run:
working_directory: examples/example/e2e
name: Install Maestro
command: curl -Ls "https://get.maestro.mobile.dev" | bash
- restore_cache:
keys:
- pod-dependencies-{{ checksum "~/project/examples/example/ios/Podfile" }}
- run:
working_directory: examples/example/ios
name: Install Pods
command: pod install
- save_cache:
key: pod-dependencies-{{ checksum "~/project/examples/example/ios/Podfile" }}
paths:
- ~/project/examples/example/ios/Pods
- run:
working_directory: examples/example/test
name: Build
command: yarn run build:ios
- run:
name: Create and boot iPhone 15 simulator
command: |
echo "Creating iPhone 15 simulator with runtime $RUNTIME"
xcrun simctl create "iPhone 15" com.apple.CoreSimulator.SimDeviceType.iPhone-15 $RUNTIME
xcrun simctl boot "iPhone 15" || true
- run:
name: Install app on simulator
command: |
xcrun simctl install booted ~/project/examples/example/test/build/Build/Products/Release-iphonesimulator/IntercomReactNativeExampleUI.app
- run:
working_directory: examples/example/test
name: Run UI Tests
command: yarn run test:ios
- store_artifacts:
path: ~/.maestro/tests
destination: maestro-tests
workflows:
version: 2.1
build-and-test:
jobs:
- install-dependencies:
<<: *run_always
- lint:
<<: *run_always
requires:
- install-dependencies
- typescript:
<<: *run_always
requires:
- install-dependencies
- unit-tests:
<<: *run_always
requires:
- install-dependencies
- build-package:
<<: *run_always
requires:
- install-dependencies
# Temporarily disabled Maestro e2e tests
# - android-e2e-test:
# <<: *run_always
# requires:
# - install-dependencies
# - lint
# - typescript
# - unit-tests
# - build-package
# - ios-e2e-test:
# <<: *run_always
# requires:
# - install-dependencies
# - lint
# - typescript
# - unit-tests
# - build-package