From 5399059b1a945fff6259e38dab3491f5c827812a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Buczek?= Date: Tue, 3 Oct 2023 13:56:53 +0200 Subject: [PATCH 1/2] No Bug: Update github actions variables --- .github/workflows/build_and_test.yml | 4 ++-- fastlane/Fastfile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index eea16c202eb..c7b7e9e4934 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -16,7 +16,7 @@ jobs: # The XCode version to use. If you want to update it please refer to this document: # https://docs.github.com/en/actions/reference/specifications-for-github-hosted-runners#supported-software # and set proper version. - XCODE_VERSION: "14.3" + XCODE_VERSION: "14.3.1" steps: - name: Select XCode @@ -27,7 +27,7 @@ jobs: - name: Update node uses: actions/setup-node@v3 with: - node-version: '16.x' + node-version: '18.x' - uses: actions/cache@v3 with: path: ~/.npm diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 1834d0246fd..0a04e30ef84 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -37,7 +37,7 @@ platform :ios do run_tests( project: "App/Client.xcodeproj", scheme: "Debug", - device: "iPhone 8", + device: "iPhone 14", code_coverage: true, skip_testing: [ "CertificateUtilitiesTests/CertificatePinningTest/testSelfSignedRootAllowed", @@ -71,7 +71,7 @@ platform :ios do run_tests( project: "App/Client.xcodeproj", scheme: "Debug", - device: "iPad Pro (9.7-inch)", + device: "iPad (10th generation)", code_coverage: true, skip_testing: [ "ClientTests/UserAgentTests" From 1da6aa0cb93dcac1a5472dbb4d8ceebc981224b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Buczek?= Date: Tue, 3 Oct 2023 15:23:30 +0200 Subject: [PATCH 2/2] Test. Append platform version to force iOS 16 sims --- fastlane/Fastfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 0a04e30ef84..276c198f752 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -37,7 +37,7 @@ platform :ios do run_tests( project: "App/Client.xcodeproj", scheme: "Debug", - device: "iPhone 14", + device: "iPhone 14 (16.4)", code_coverage: true, skip_testing: [ "CertificateUtilitiesTests/CertificatePinningTest/testSelfSignedRootAllowed", @@ -71,7 +71,7 @@ platform :ios do run_tests( project: "App/Client.xcodeproj", scheme: "Debug", - device: "iPad (10th generation)", + device: "iPad (10th generation) (16.4)", code_coverage: true, skip_testing: [ "ClientTests/UserAgentTests"