From 9fd429957d7517024f6012e56f21489c7e1831d5 Mon Sep 17 00:00:00 2001 From: Paul Schmiedmayer Date: Fri, 10 Jan 2025 15:07:24 -0800 Subject: [PATCH] Update Setup --- fastlane/Fastfile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 6c912b0b..5d91f31f 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -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(