Skip to content

Commit

Permalink
Update Setup
Browse files Browse the repository at this point in the history
  • Loading branch information
PSchmiedmayer committed Jan 10, 2025
1 parent 39e1d02 commit 9fd4299
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,20 @@ platform :ios do
end
end

desc "CodeQL"
lane :codeql do
ENV["FASTLANE_XCODEBUILD_SETTINGS_TIMEOUT"] = "320" # CodeQL runs on GitHub CI. We need much higher timeout here.
build_app(
skip_archive: true,
skip_codesigning: true,
derived_data_path: ".derivedData",
xcargs: [
"-skipPackagePluginValidation",
"-skipMacroValidation"
]
)
end

desc "Build app"
lane :build do
build_app(
Expand Down

0 comments on commit 9fd4299

Please sign in to comment.