-
Notifications
You must be signed in to change notification settings - Fork 68
117 lines (97 loc) · 2.9 KB
/
Copy pathios-tests.yml
File metadata and controls
117 lines (97 loc) · 2.9 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
name: ios-tests
on:
push:
branches:
- main
pull_request:
jobs:
ios-iphone-tests:
runs-on: macos-15
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 24
cache: yarn
- name: Install Yarn dependencies
run: yarn
- name: Install macOS dependencies
run: |
brew tap wix/brew
brew install applesimutils
env:
HOMEBREW_NO_AUTO_UPDATE: 1
HOMEBREW_NO_INSTALL_CLEANUP: 1
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Install CocoaPods
run: cd ios ; pod install ; cd -
- name: Detox build
run: |
xcodebuild -workspace ios/Discourse.xcworkspace \
-scheme Discourse \
-configuration Release \
-sdk iphonesimulator \
-destination 'generic/platform=iOS Simulator' \
-derivedDataPath ios/build \
-quiet \
build
- name: Detox iPhone tests
run: yarn detox test --configuration ios.sim.release --cleanup --record-logs all
- name: Upload artifacts
if: failure()
uses: actions/upload-artifact@v4
with:
name: detox-artifacts-iphone
path: artifacts
ios-ipad-tests:
runs-on: macos-15
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 24
cache: yarn
- name: Install Yarn dependencies
run: yarn
- name: Install macOS dependencies
run: |
brew tap wix/brew
brew install applesimutils
env:
HOMEBREW_NO_AUTO_UPDATE: 1
HOMEBREW_NO_INSTALL_CLEANUP: 1
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
- name: Install CocoaPods
run: cd ios ; pod install ; cd -
- name: Detox build
run: |
xcodebuild -workspace ios/Discourse.xcworkspace \
-scheme Discourse \
-configuration Release \
-sdk iphonesimulator \
-destination 'generic/platform=iOS Simulator' \
-derivedDataPath ios/build \
-quiet \
build
- name: Boot iPad simulator
run: |
xcrun simctl boot 'iPad (10th generation)' || true
xcrun simctl bootstatus 'iPad (10th generation)' -b
- name: Detox iPad tests
run: yarn detox test --configuration ios.sim.release --cleanup --record-logs all -n 'iPad (10th generation)' --retries 2
- name: Upload artifacts
if: failure()
uses: actions/upload-artifact@v4
with:
name: detox-artifacts-ipad
path: artifacts