-
Notifications
You must be signed in to change notification settings - Fork 35
132 lines (100 loc) · 4.4 KB
/
build-example-ios-for-pr.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
name: "build-example-ios-for-pr"
on:
issue_comment:
types: [created]
jobs:
build:
name: Build Example App for Specific PR
runs-on: macos-14
# Only run if its a PR and the comment contains:
# "run-workflow:build-example-ios-for-pr"
if: github.event.issue.pull_request && contains(github.event.comment.body, 'run-workflow:build-example-ios-for-pr')
steps:
- name: Cancel previous runs
uses: styfle/cancel-workflow-action@0.9.1
- name: Get branch of PR
uses: xt0rted/pull-request-comment-branch@v1
id: comment-branch
- name: Checkout PR branch ${{ steps.comment-branch.outputs.head_ref }}
uses: actions/checkout@v3
with:
ref: ${{ steps.comment-branch.outputs.head_ref }}
- name: Add workflow link as comment on PR
uses: actions/github-script@v6
if: always()
with:
script: |
const name = '${{ github.workflow }}';
const url = '${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}';
const body = `Run GH Workflow: ${name}`;
await github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: body
})
# Start build...
- name: Show self-hosted machine infomation
run: uname -a
- name: Check Xcode version
run: /usr/bin/xcodebuild -version
- name: Checkout repo from main branch
uses: actions/checkout@v4
- name: Install Apple certificate and provisioning profile
env:
BUILD_CERTIFICATE_BASE64: ${{ secrets.BUILD_CERTIFICATE_BASE64 }}
P12_PASSWORD: ${{ secrets.P12_PASSWORD }}
BUILD_PROVISION_PROFILE_BASE64: ${{ secrets.BUILD_PROVISION_PROFILE_BASE64 }}
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
echo -n "$BUILD_PROVISION_PROFILE_BASE64" | 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 set-key-partition-list -S apple-tool:,apple: -k "$KEYCHAIN_PASSWORD" $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
- uses: actions/setup-node@v4
with:
node-version: 'v18.12.1'
cache: 'yarn'
- name: Initialize library
run: |
yarn install
cd example
yarn install
- name: Build JS
run: yarn run bob build
- name: 1/4 - Run `pod-install` (fabric, static library)
run: yarn pod-install:new-static
- name: 1/4 - Build example (fabric, static library)
run: yarn run build:ios
- name: Clear/reset example pods
run: yarn run nuke:example-pods
- name: 2/4 - Run `pod-install` (fabric, dynamic frameworks)
run: yarn pod-install:new-dynamic
- name: 2/4 - Build example (fabric, dynamic frameworks)
run: yarn run build:ios
- name: Clear/reset example pods
run: yarn run nuke:example-pods
- name: 3/4 - Run `pod-install` (paper, static library)
run: yarn pod-install:old-static
- name: 3/4 - Build example (paper, static library)
run: yarn run build:ios
- name: Clear/reset example pods
run: yarn run nuke:example-pods
- name: 4/4 - Run `pod-install` (paper, dynamic frameworks)
run: yarn pod-install:old-dynamic
- name: 4/4 - Build example (paper, dynamic frameworks)
run: yarn run build:ios