Skip to content

Commit

Permalink
ci: always run setup_ci
Browse files Browse the repository at this point in the history
For some reason if these jobs are both run on ci sequentially, the second one fails in the match phase. I think setup_ci lets the previous run's keychain get used for the subsequent run's, and then something fails. In any case, these are the only jobs that don't call this with force: true.
  • Loading branch information
armcknight committed Aug 28, 2023
1 parent b9d59f7 commit 6b3f76f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -263,8 +263,9 @@ platform :ios do

desc "Build Perf-test app without Sentry"
lane :build_perf_test_app_plain do

setup_ci
setup_ci(
force: true
)

sync_code_signing(
type: "development",
Expand All @@ -287,7 +288,9 @@ platform :ios do

desc "Build Perf-test app with Sentry"
lane :build_perf_test_app_sentry do
setup_ci
setup_ci(
force: true
)

sync_code_signing(
type: "development",
Expand Down

0 comments on commit 6b3f76f

Please sign in to comment.