diff --git a/.github/workflows/integration_test.yml b/.github/workflows/integration_test.yml index c212915a2..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-latest + runs-on: macos-15 steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - name: Setup Flutter diff --git a/demo_app/ios/fastlane/Fastfile b/demo_app/ios/fastlane/Fastfile index baa427db3..cf8ad83c9 100644 --- a/demo_app/ios/fastlane/Fastfile +++ b/demo_app/ios/fastlane/Fastfile @@ -20,19 +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 find-identity -v -p codesigning') sh('cd ../.. && patrol build ios --release --verbose --target integration_test/auto_resize_test.dart') end