-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into PP-422-Tapping-the-help-button-multiple-time…
…s-before-the-camera-is-active-Help-screen-is-pushed-multiple-times
- Loading branch information
Showing
21 changed files
with
37 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
steps: | ||
- uses: maxim-lobanov/[email protected] | ||
with: | ||
xcode-version: '14.2' | ||
xcode-version: '14.3.1' | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,18 +12,19 @@ on: | |
secrets: | ||
GINI_MOBILE_TEST_CLIENT_SECRET: | ||
required: true | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
check: | ||
runs-on: macos-latest | ||
strategy: | ||
matrix: | ||
target: [GiniBankAPILibrary, GiniBankAPILibraryPinning] | ||
destination: ['platform=iOS Simulator,OS=16.2,name=iPhone 13', 'platform=iOS Simulator,OS=15.0,name=iPhone 11'] | ||
destination: ['platform=iOS Simulator,OS=16.4,name=iPhone SE (3rd generation)', 'platform=iOS Simulator,OS=17.2,name=iPhone 14'] | ||
steps: | ||
- uses: maxim-lobanov/[email protected] | ||
with: | ||
xcode-version: '14.2' | ||
xcode-version: '14.3.1' | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
@@ -38,14 +39,6 @@ jobs: | |
cd BankAPILibrary/GiniBankAPILibraryPinning | ||
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
steps: | ||
- uses: maxim-lobanov/[email protected] | ||
with: | ||
xcode-version: '14.2' | ||
xcode-version: '14.3.1' | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
steps: | ||
- uses: maxim-lobanov/[email protected] | ||
with: | ||
xcode-version: '14.2' | ||
xcode-version: '14.3.1' | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,18 +16,19 @@ on: | |
secrets: | ||
GINI_MOBILE_TEST_CLIENT_SECRET: | ||
required: true | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
check: | ||
runs-on: macos-latest | ||
strategy: | ||
matrix: | ||
target: [GiniBankSDK, GiniBankSDKPinning] | ||
destination: ['platform=iOS Simulator,OS=16.2,name=iPhone 13', 'platform=iOS Simulator,OS=15.0,name=iPhone 11'] | ||
destination: ['platform=iOS Simulator,OS=16.4,name=iPhone SE (3rd generation)', 'platform=iOS Simulator,OS=17.2,name=iPhone 14'] | ||
steps: | ||
- uses: maxim-lobanov/[email protected] | ||
with: | ||
xcode-version: '14.2' | ||
xcode-version: '14.3.1' | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
@@ -42,14 +43,6 @@ jobs: | |
cd BankSDK/GiniBankSDKPinning | ||
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
steps: | ||
- uses: maxim-lobanov/[email protected] | ||
with: | ||
xcode-version: '14.2' | ||
xcode-version: '14.3.1' | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ jobs: | |
|
||
- uses: maxim-lobanov/[email protected] | ||
with: | ||
xcode-version: '14.2' | ||
xcode-version: '14.3.1' | ||
|
||
- name: Setup provisioning profile | ||
env: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
steps: | ||
- uses: maxim-lobanov/[email protected] | ||
with: | ||
xcode-version: '14.2' | ||
xcode-version: '14.3.1' | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
steps: | ||
- uses: maxim-lobanov/[email protected] | ||
with: | ||
xcode-version: '14.2' | ||
xcode-version: '14.3.1' | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,18 +14,20 @@ on: | |
secrets: | ||
GINI_MOBILE_TEST_CLIENT_SECRET: | ||
required: true | ||
workflow_dispatch: | ||
|
||
|
||
jobs: | ||
check: | ||
runs-on: macos-latest | ||
strategy: | ||
matrix: | ||
target: [GiniCaptureSDK, GiniCaptureSDKPinning] | ||
destination: ['platform=iOS Simulator,OS=16.2,name=iPhone 13', 'platform=iOS Simulator,OS=15.0,name=iPhone 11'] | ||
destination: ['platform=iOS Simulator,OS=16.4,name=iPhone SE (3rd generation)', 'platform=iOS Simulator,OS=17.2,name=iPhone 14'] | ||
steps: | ||
- uses: maxim-lobanov/[email protected] | ||
with: | ||
xcode-version: '14.2' | ||
xcode-version: '14.3.1' | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
@@ -40,14 +42,6 @@ jobs: | |
cd CaptureSDK/GiniCaptureSDKPinning | ||
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
steps: | ||
- uses: maxim-lobanov/[email protected] | ||
with: | ||
xcode-version: '14.2' | ||
xcode-version: '14.3.1' | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
steps: | ||
- uses: maxim-lobanov/[email protected] | ||
with: | ||
xcode-version: '14.2' | ||
xcode-version: '14.3.1' | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,18 +12,19 @@ on: | |
secrets: | ||
GINI_MOBILE_TEST_CLIENT_SECRET: | ||
required: true | ||
|
||
workflow_dispatch: | ||
|
||
jobs: | ||
check: | ||
runs-on: macos-latest | ||
strategy: | ||
matrix: | ||
target: [GiniHealthAPILibrary, GiniHealthAPILibraryPinning] | ||
destination: ['platform=iOS Simulator,OS=16.2,name=iPhone 13', 'platform=iOS Simulator,OS=15.0,name=iPhone 11'] | ||
destination: ['platform=iOS Simulator,OS=16.4,name=iPhone SE (3rd generation)', 'platform=iOS Simulator,OS=17.2,name=iPhone 14'] | ||
steps: | ||
- uses: maxim-lobanov/[email protected] | ||
with: | ||
xcode-version: '14.2' | ||
xcode-version: '14.3.1' | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
@@ -38,14 +39,6 @@ jobs: | |
cd HealthAPILibrary/GiniHealthAPILibraryPinning | ||
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
steps: | ||
- uses: maxim-lobanov/[email protected] | ||
with: | ||
xcode-version: '14.2' | ||
xcode-version: '14.3.1' | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
steps: | ||
- uses: maxim-lobanov/[email protected] | ||
with: | ||
xcode-version: '14.2' | ||
xcode-version: '14.3.1' | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ jobs: | |
steps: | ||
- uses: maxim-lobanov/[email protected] | ||
with: | ||
xcode-version: '14.2' | ||
xcode-version: '14.3.1' | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,18 +14,19 @@ on: | |
secrets: | ||
GINI_MOBILE_TEST_CLIENT_SECRET: | ||
required: true | ||
|
||
workflow_dispatch: | ||
|
||
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'] | ||
destination: ['platform=iOS Simulator,OS=16.4,name=iPhone SE (3rd generation)', 'platform=iOS Simulator,OS=17.2,name=iPhone 14'] | ||
steps: | ||
- uses: maxim-lobanov/[email protected] | ||
with: | ||
xcode-version: '14.2' | ||
xcode-version: '14.3.1' | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
@@ -40,14 +41,6 @@ jobs: | |
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
steps: | ||
- uses: maxim-lobanov/[email protected] | ||
with: | ||
xcode-version: '14.2' | ||
xcode-version: '14.3.1' | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,7 +20,7 @@ jobs: | |
|
||
- uses: maxim-lobanov/[email protected] | ||
with: | ||
xcode-version: '14.2' | ||
xcode-version: '14.3.1' | ||
|
||
- name: Setup provisioning profile | ||
env: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ jobs: | |
steps: | ||
- uses: maxim-lobanov/[email protected] | ||
with: | ||
xcode-version: '14.2' | ||
xcode-version: '14.3.1' | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|