diff --git a/ci/Jenkinsfile.fastlane.clean b/ci/Jenkinsfile.fastlane.clean index 3db39faefd..f22cd63232 100644 --- a/ci/Jenkinsfile.fastlane.clean +++ b/ci/Jenkinsfile.fastlane.clean @@ -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', ) } diff --git a/fastlane/Fastfile b/fastlane/Fastfile index a800c32fa3..09adc0ed26 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -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'