From 393de7f23563796046ee60dbc29e262adad4c5ff Mon Sep 17 00:00:00 2001 From: Dao Hoang Son Date: Thu, 14 Nov 2024 21:56:11 +0700 Subject: [PATCH 1/6] Remove setup_ci step --- demo_app/ios/fastlane/Fastfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/demo_app/ios/fastlane/Fastfile b/demo_app/ios/fastlane/Fastfile index baa427db3..9ec68dddd 100644 --- a/demo_app/ios/fastlane/Fastfile +++ b/demo_app/ios/fastlane/Fastfile @@ -20,8 +20,6 @@ platform :ios do end lane :patrol_build do - setup_ci - match( app_identifier: ["dev.fwfh.demoApp", "dev.fwfh.demoApp.RunnerTests"], type: 'appstore', From 553cf8b9b66606c666ed92ac06db5a298dbb463f Mon Sep 17 00:00:00 2001 From: Dao Hoang Son Date: Thu, 14 Nov 2024 22:24:57 +0700 Subject: [PATCH 2/6] Revert "Remove setup_ci step" This reverts commit 393de7f23563796046ee60dbc29e262adad4c5ff. --- demo_app/ios/fastlane/Fastfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/demo_app/ios/fastlane/Fastfile b/demo_app/ios/fastlane/Fastfile index 9ec68dddd..baa427db3 100644 --- a/demo_app/ios/fastlane/Fastfile +++ b/demo_app/ios/fastlane/Fastfile @@ -20,6 +20,8 @@ platform :ios do end lane :patrol_build do + setup_ci + match( app_identifier: ["dev.fwfh.demoApp", "dev.fwfh.demoApp.RunnerTests"], type: 'appstore', From 7f65cf3dbf8e1f98563da5905e46f5f374b654c2 Mon Sep 17 00:00:00 2001 From: Dao Hoang Son Date: Thu, 14 Nov 2024 22:31:51 +0700 Subject: [PATCH 3/6] Debug default keychain --- demo_app/ios/fastlane/Fastfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/demo_app/ios/fastlane/Fastfile b/demo_app/ios/fastlane/Fastfile index baa427db3..41a1c3f88 100644 --- a/demo_app/ios/fastlane/Fastfile +++ b/demo_app/ios/fastlane/Fastfile @@ -34,6 +34,8 @@ platform :ios do readonly: true ) + sh('security default-keychain') + sh('cd ../.. && patrol build ios --release --verbose --target integration_test/auto_resize_test.dart') end end From 0c7e079c4749dfc7e348022ca29148a779e3267d Mon Sep 17 00:00:00 2001 From: Dao Hoang Son Date: Thu, 14 Nov 2024 22:35:19 +0700 Subject: [PATCH 4/6] Debug keychain --- demo_app/ios/fastlane/Fastfile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/demo_app/ios/fastlane/Fastfile b/demo_app/ios/fastlane/Fastfile index 41a1c3f88..cf8ad83c9 100644 --- a/demo_app/ios/fastlane/Fastfile +++ b/demo_app/ios/fastlane/Fastfile @@ -20,21 +20,24 @@ platform :ios do end lane :patrol_build do + sh('security default-keychain') + setup_ci + sh('security default-keychain') match( app_identifier: ["dev.fwfh.demoApp", "dev.fwfh.demoApp.RunnerTests"], type: 'appstore', readonly: true ) + sh('security find-identity -v -p codesigning') match( app_identifier: ["dev.fwfh.demoApp.RunnerUITests.xctrunner"], type: 'development', readonly: true ) - - sh('security default-keychain') + sh('security find-identity -v -p codesigning') sh('cd ../.. && patrol build ios --release --verbose --target integration_test/auto_resize_test.dart') end From 9f4b47d817313c727a3da99866a1a679635265ec Mon Sep 17 00:00:00 2001 From: Dao Hoang Son Date: Fri, 22 Nov 2024 22:44:08 +0700 Subject: [PATCH 5/6] Test with `macos-15-arm64` --- .github/workflows/integration_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration_test.yml b/.github/workflows/integration_test.yml index c212915a2..20525b8a2 100644 --- a/.github/workflows/integration_test.yml +++ b/.github/workflows/integration_test.yml @@ -63,7 +63,7 @@ jobs: --use-orchestrator ios: - runs-on: macos-latest + runs-on: macos-15-arm64 steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Setup Flutter From e123545e4d0a6308fdd79aa7b25996529acfeef7 Mon Sep 17 00:00:00 2001 From: Dao Hoang Son Date: Fri, 22 Nov 2024 23:57:24 +0700 Subject: [PATCH 6/6] Test with `macos-15` --- .github/workflows/integration_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration_test.yml b/.github/workflows/integration_test.yml index 20525b8a2..a79b038a6 100644 --- a/.github/workflows/integration_test.yml +++ b/.github/workflows/integration_test.yml @@ -63,7 +63,7 @@ jobs: --use-orchestrator ios: - runs-on: macos-15-arm64 + runs-on: macos-15 steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Setup Flutter