Skip to content
Open
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
4 changes: 2 additions & 2 deletions fastlane/.env
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ XCODE_BUILDLOG_PATH="./Output/BuildLogs/"

FASTLANE_TEAM_ID="95V535S6TQ"

DEFAULT_TEST_DEVICE="iPhone 15"
DEFAULT_TEST_OS_VERSION="17.0.1"
DEFAULT_TEST_DEVICE="iPhone 16 Pro"
DEFAULT_TEST_OS_VERSION="18.5"

GYM_CONFIGURATION="Release"
GYM_SCHEME="JudoKit_iOS"
Expand Down
9 changes: 5 additions & 4 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -171,14 +171,15 @@ platform :ios do
workspace: options[:app].workspace,
})

build_instrumented_tests_packages({
app: options[:app],
environment: options[:environment]
}) if !options[:app].ui_test_scheme.nil?

revert_staging_environment(
app: options[:app],
sdk_root_path: @project_root_path
) if options[:environment] == 'staging'

build_instrumented_tests_packages({
app: options[:app]
}) if !options[:app].ui_test_scheme.nil? && options[:environment] == 'production'
end

desc "Package Instrumented Tests for a Sample App"
Expand Down
Loading