forked from ir-engine/ir-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
205 lines (173 loc) Β· 6.81 KB
/
native_cd.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
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
name: IR Engine Native App Deployment
permissions:
id-token: write
contents: write
deployments: write
on:
workflow_dispatch:
inputs:
overwrite_screenshots:
description: 'Overwrite existing screenshots with output of test run'
default: false
required: false
type: boolean
push:
branches:
- dev
jobs:
build_ios_app:
runs-on: macos-latest
steps:
- name: check Xcode version
run: /usr/bin/xcodebuild -version
- name: checkout repository
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install the Apple certificate and provisioning profile
env:
BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }}
P12_PASSWORD: ${{ secrets.P12_PASSWORD }}
LARGE_SECRET_PASSPHRASE: ${{ secrets.LARGE_SECRET_PASSPHRASE }}
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }}
run: |
# create variables
CERTIFICATE_PATH=$RUNNER_TEMP/build_certificate.p12
PP_PATH=$RUNNER_TEMP/build_pp.mobileprovision
KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db
# import certificate and provisioning profile from secrets
echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode -o $CERTIFICATE_PATH
./scripts/decrypt-provisioning-profile.sh
cat $HOME/secrets/irengine-profile-base64.txt | base64 --decode -o $PP_PATH
# create temporary keychain
security create-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH
security set-keychain-settings -lut 21600 $KEYCHAIN_PATH
security unlock-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH
# import certificate to keychain
security import $CERTIFICATE_PATH -P "$P12_PASSWORD" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH
security list-keychain -d user -s $KEYCHAIN_PATH
# apply provisioning profile
mkdir -p ~/Library/MobileDevice/Provisioning\ Profiles
cp $PP_PATH ~/Library/MobileDevice/Provisioning\ Profiles
- name: Checkout test project repo
uses: actions/checkout@v4
with:
repository: ir-engine/ir-tutorial-hello
path: packages/projects/ir-tutorial-hello
- name: build javascript bundle
run: |
npm install
cd packages/clientNative
npm run build:ios:release
- uses: actions/cache/restore@v4
id: cache-xcarchive
with:
path: ./packages/clientNative/clientNative.xcarchive
key: ${{ runner.os }}-${{ hashFiles('**/Podfile.lock') }}
- name: build archive
if: steps.cache-xcarchive.outputs.cache-hit != 'true'
run: |
cd packages/clientNative
pod install --project-directory=ios
xcodebuild -scheme "clientNative" \
-archivePath "clientNative.xcarchive" \
-workspace ios/clientNative.xcworkspace \
-configuration Release \
-sdk iphoneos \
-destination generic/platform=iOS \
-allowProvisioningUpdates \
DEVELOPMENT_TEAM=${{ secrets.DEVELOPMENT_TEAM_ID }} \
clean archive
- uses: actions/cache/save@v4
with:
path: ./packages/clientNative/clientNative.xcarchive
key: ${{ steps.cache-xcarchive.outputs.cache-primary-key }}
- name: export ipa
run: |
cd packages/clientNative
ls
xcodebuild -exportArchive -archivePath clientNative.xcarchive -exportOptionsPlist clientNative.xcarchive/Info.plist -exportPath ${{ runner.temp }}/build
- name: Upload application
uses: actions/upload-artifact@v4
with:
name: IREngineApp
path: ${{ runner.temp }}/build/clientNative.ipa
retention-days: 1
- name: Upload source maps
uses: actions/upload-artifact@v4
with:
name: IREngineBundle
path: packages/clientNative/main.jsbundle.map
retention-days: 30
screenshot_test:
runs-on: ubuntu-latest
needs: build_ios_app
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 22
- name: Install dependencies
run: npm install
- uses: actions/cache/restore@v4
id: cache-screenshots
with:
path: packages/screenshot-testing/expectedScreenshots
key: ${{ runner.os }}-expected-screenshots-${{ hashFiles('packages/screenshot-testing/**/*.png') }}
restore-keys: |
${{ runner.os }}-expected-screenshots-${{ hashFiles('packages/screenshot-testing/**/*.png') }}
${{ runner.os }}-expected-screenshots
- name: Create Appium Test Zip
run: npm run bundle -w screenshot-testing
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v2
with:
role-to-assume: ${{ secrets.DEVICE_FARM_IAM_ARN }}
aws-region: us-west-2
- name: Download IPA
uses: actions/download-artifact@v4
with:
name: IREngineApp
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Run Screenshot Test
id: run-benchmark
uses: aws-actions/[email protected]
with:
run-settings-json: |
{
"name": "GitHubAction-${{ github.workflow }}_${{ github.run_id }}_${{ github.run_attempt }}",
"projectArn": "TestApp",
"appArn": "clientNative.ipa",
"devicePoolArn": "SmallDevicePool",
"executionConfiguration": {
"jobTimeoutMinutes": 40
},
"test": {
"type": "APPIUM_NODE",
"testPackageArn": "packages/screenshot-testing/MyTests.zip",
"testSpecArn": "packages/screenshot-testing/testSpec.yaml"
}
}
artifact-types: ALL
- uses: actions/upload-artifact@v4
if: always()
with:
name: ScreenshotTestOutputFiles
path: ${{ steps.run-benchmark.outputs.artifact-folder }}
- name: Install ImageMagick
run: |
sudo apt-get install imagemagick
- name: Extract screenshots from artifacts
run: |
./scripts/unzipArchive.sh ${{ steps.run-benchmark.outputs.artifact-folder }} packages/screenshot-testing/screenshots
- name: Compare Screenshots
run: npm run screenshot-test -w screenshot-testing
- uses: actions/cache/save@v4
if: failure() && inputs.overwrite_screenshots
with:
path: packages/screenshot-testing/screenshots
key: ${{ runner.os }}-expected-screenshots-${{ hashFiles('packages/screenshot-testing/**/*.png') }}