fastlane: disable oldest_build_allowed for TestFlight clean
Signed-off-by: Jakub Sokołowski <jakub@status.im>
This commit is contained in:
parent
9fb513cea0
commit
128f44f58b
|
@ -29,7 +29,7 @@ pipeline {
|
|||
nix = load('ci/nix.groovy')
|
||||
nix.shell(
|
||||
'bundle install --gemfile=fastlane/Gemfile',
|
||||
attr: 'shells.fastlane'
|
||||
attr: 'shells.fastlane',
|
||||
)
|
||||
} }
|
||||
}
|
||||
|
@ -44,7 +44,7 @@ pipeline {
|
|||
]) {
|
||||
nix.shell(
|
||||
'bundle exec --gemfile=fastlane/Gemfile fastlane ios clean',
|
||||
keep: ['FASTLANE_APPLE_ID', 'FASTLANE_PASSWORD']
|
||||
keep: ['FASTLANE_APPLE_ID', 'FASTLANE_PASSWORD'],
|
||||
attr: 'shells.fastlane',
|
||||
)
|
||||
}
|
||||
|
|
|
@ -222,9 +222,9 @@ platform :ios do
|
|||
lane :clean do
|
||||
clean_testflight_testers(
|
||||
username: ENV['FASTLANE_APPLE_ID'],
|
||||
days_of_inactivity: 30,
|
||||
oldest_build_allowed: 2_019_032_709
|
||||
days_of_inactivity: 30
|
||||
)
|
||||
# In the future we can try using 'oldest_build_allowed'
|
||||
end
|
||||
|
||||
desc '`fastlane ios upload-diawi` - upload .ipa to diawi'
|
||||
|
|
Loading…
Reference in New Issue