-
Notifications
You must be signed in to change notification settings - Fork 13
164 lines (135 loc) · 4.52 KB
/
ci.yml
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
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- '**'
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
uses: ./.github/actions/setup
- name: Lint files
run: yarn lint
- name: Typecheck files
run: yarn typecheck
test-e2e-android:
runs-on: ubuntu-latest
timeout-minutes: 45
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Enable KVM
run: |
echo 'KERNEL=="kvm", GROUP="kvm", MODE="0666", OPTIONS+="static_node=kvm"' | sudo tee /etc/udev/rules.d/99-kvm4all.rules
sudo udevadm control --reload-rules
sudo udevadm trigger --name-match=kvm
- name: Setup
uses: ./.github/actions/setup
- name: Setup JDK for Build
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 17
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Cache Detox Build
uses: actions/cache@v3
id: detox-build-cache
with:
path: example/android/app/build
key: detox-build-${{ runner.os }}
- name: Run Detox Build
run: yarn example detox build e2e --configuration android.emu.release
- name: Get Device Name
id: device
run: node -e "console.log('AVD_NAME=' + require('./example/.detoxrc').devices.emulator.device.avdName)" >> $GITHUB_OUTPUT
- name: AVD cache
uses: actions/cache@v3
id: avd-cache
with:
path: |
~/.android/avd/*
~/.android/adb*
key: avd-34-x86_64-${{ steps.device.outputs.AVD_NAME }}
- name: Create AVD and generate snapshot for caching
if: steps.avd-cache.outputs.cache-hit != 'true'
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 34
arch: x86_64
avd-name: ${{ steps.device.outputs.AVD_NAME }}
force-avd-creation: false
emulator-options: -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: false
script: echo "Generated AVD snapshot for caching."
- name: Run Detox Test(s)
uses: reactivecircus/android-emulator-runner@v2
with:
api-level: 34
arch: x86_64
avd-name: ${{ steps.device.outputs.AVD_NAME }}
force-avd-creation: false
emulator-options: -no-snapshot-save -no-window -gpu swiftshader_indirect -noaudio -no-boot-anim -camera-back none
disable-animations: true
script: yarn example detox test e2e --configuration android.emu.release --headless --record-logs all --take-screenshots failing
- name: Upload artifacts
uses: actions/upload-artifact@v3
if: failure()
with:
name: detox-artifacts
path: example/artifacts
test-e2e-ios:
runs-on: macos-latest
timeout-minutes: 45
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
uses: ./.github/actions/setup
- name: Install Detox Dependencies
run: |
brew tap wix/brew
brew install applesimutils
- name: Cache Pods
uses: actions/cache@v3
id: pod-cache
with:
path: example/ios/Pods
key: pods-${{ hashFiles('**/Podfile.lock') }}
- name: Update Pods
run: |
gem update cocoapods xcodeproj
cd example/ios && NO_FLIPPER=1 pod install && cd ../..
- name: Run Detox Rebuild Framework Cache
run: yarn example detox rebuild-framework-cache
- name: Cache Detox Build
uses: actions/cache@v3
id: detox-build-cache
with:
path: example/ios/build
key: detox-build-${{ runner.os }}
- name: Run Detox Build
run: yarn example detox build e2e --configuration ios.sim.release
- name: Run Detox Test(s)
run: yarn example detox test e2e --configuration ios.sim.release --cleanup --headless --record-logs all --take-screenshots failing
- name: Upload artifacts
uses: actions/upload-artifact@v3
if: failure()
with:
name: detox-artifacts
path: example/artifacts
build-library:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup
uses: ./.github/actions/setup
- name: Build package
run: yarn prepare