-
Notifications
You must be signed in to change notification settings - Fork 947
45 lines (42 loc) · 1.18 KB
/
ios_build_tests.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
name: '[ios] build tests'
on:
pull_request:
branches:
- master
- main
- v3.0-dev
- v3.0
paths:
- 'framework/ios/**'
- 'framework/examples/ios-demo/**'
- 'driver/js/src/**'
- 'driver/js/include/**'
- 'dom/include/**'
- 'dom/src/**'
- 'layout/engine/**'
- 'modules/ios/**'
- 'modules/footstone/**'
- 'modules/vfs/ios/**'
- 'modules/vfs/native/**'
- 'renderer/native/ios/**'
- 'devtools/devtools-backend/**'
- 'hippy.podspec'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
ios_build_tests:
runs-on: macos-latest
strategy:
matrix:
type: [Debug, Release]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
lfs: true
- name: Demo
working-directory: framework/examples/ios-demo
run: |
pod install
xcodebuild build -destination "generic/platform=iOS" -workspace "HippyDemo.xcworkspace" -scheme "HippyDemo" -configuration ${{matrix.type}} CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO CODE_SIGNING_ALLOWED=NO