Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix iOS code signing issue during integration test #1370

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/integration_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
5 changes: 5 additions & 0 deletions demo_app/ios/fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading