-
Notifications
You must be signed in to change notification settings - Fork 3
85 lines (76 loc) · 3.31 KB
/
health-sdk.check.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
name: Check Health SDK
on:
push:
paths:
- 'HealthSDK/**'
- 'HealthAPILibrary/**'
tags-ignore:
- '**'
pull_request:
paths:
- 'HealthSDK/**'
- 'HealthAPILibrary/**'
workflow_call:
secrets:
GINI_MOBILE_TEST_CLIENT_SECRET:
required: true
jobs:
check:
runs-on: macos-latest
strategy:
matrix:
target: [GiniHealthSDK, GiniHealthSDKPinning]
destination: ['platform=iOS Simulator,OS=16.2,name=iPhone 13', 'platform=iOS Simulator,OS=15.0,name=iPhone 11']
steps:
- uses: maxim-lobanov/[email protected]
with:
xcode-version: '14.2'
- name: Checkout
uses: actions/checkout@v3
- name: Check package GiniHealthSDK
run: |
cd HealthSDK/GiniHealthSDK
swift package update
- name: Check package GiniHealthSDKPinning
run: |
cd HealthSDK/GiniHealthSDKPinning
swift package update
- name: Link to 15.0 Simulators
if: matrix.destination == 'platform=iOS Simulator,OS=15.0,name=iPhone 11'
run: |
echo "Creating Runtimes folder if needed..."
sudo mkdir -p /Library/Developer/CoreSimulator/Profiles/Runtimes
echo "Creating symlink of the iOS 15.0 runtime..."
sudo ln -s /Applications/Xcode_13.1.app/Contents/Developer/Platforms/iPhoneOS.platform/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS.simruntime /Library/Developer/CoreSimulator/Profiles/Runtimes/iOS\ 15.0.simruntime
- name: Build sdk targets
run: |
xcodebuild -workspace GiniMobile.xcworkspace -scheme "${{ matrix.target }}" -destination "${{ matrix.destination }}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO
- name: Run unit tests
run: |
xcodebuild clean test -workspace GiniMobile.xcworkspace -scheme "${{ matrix.target }}Tests" -destination "${{ matrix.destination }}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO
- name: Build example app
run: |
xcodebuild -project HealthSDK/GiniHealthSDKExample/GiniHealthSDKExample.xcodeproj -scheme "GiniHealthSDKPinningExample" -destination "${{ matrix.destination }}" CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO ONLY_ACTIVE_ARCH=NO
- name: Build pinning example app and run integration tests
run: >
xcodebuild clean test
-project HealthSDK/GiniHealthSDKExample/GiniHealthSDKExample.xcodeproj
-scheme "GiniHealthSDKPinningExampleTests"
-destination "${{ matrix.destination }}"
-skip-testing:GiniHealthSDKPinningExampleTests/GiniHealthSDKPinningExampleWrongCertificatesTests
CODE_SIGN_IDENTITY=""
CODE_SIGNING_REQUIRED=NO
ONLY_ACTIVE_ARCH=NO
CLIENT_ID="gini-mobile-test"
CLIENT_SECRET="${{ secrets.GINI_MOBILE_TEST_CLIENT_SECRET }}"
&&
xcodebuild clean test
-project HealthSDK/GiniHealthSDKExample/GiniHealthSDKExample.xcodeproj
-scheme "GiniHealthSDKPinningExampleTests"
-destination "${{ matrix.destination }}"
-only-testing:GiniHealthSDKPinningExampleTests/GiniHealthSDKPinningExampleWrongCertificatesTests
CODE_SIGN_IDENTITY=""
CODE_SIGNING_REQUIRED=NO
ONLY_ACTIVE_ARCH=NO
CLIENT_ID="gini-mobile-test"
CLIENT_SECRET="${{ secrets.GINI_MOBILE_TEST_CLIENT_SECRET }}"