Sha256: 5b09c8363a5acaf450293c15e36328c7caa7fb7eab2d4840f3ae2033717fdbdc

Contents?: true

Size: 1.4 KB

Versions: 10

Compression:

Stored size: 1.4 KB

Contents

module Fastlane
  module Actions
    class CleanBuildArtifactsAction < Action
      def self.run(options)
        [
          Actions.lane_context[Actions::SharedValues::IPA_OUTPUT_PATH],
          Actions.lane_context[Actions::SharedValues::SIGH_PROFILE_PATH],
          Actions.lane_context[Actions::SharedValues::DSYM_OUTPUT_PATH]
        ].reject { |file| file.nil? || !File.exist?(file) }.each do |file|
          if options[:exclude_pattern]
            next if file.match(options[:exclude_pattern])
          end

          Helper.log.debug "Cleaning up '#{file}'".yellow
          File.delete(file)
        end

        Helper.log.info 'Cleaned up build artifacts 🐙'.green
      end

      def self.available_options
        [
          FastlaneCore::ConfigItem.new(key: :exclude_pattern,
                                       env_name: "FL_CLEAN_BUILD_ARTIFACTS_EXCLUDE_PATTERN",
                                       description: "Exclude all files from clearing that match the given pattern: e.g. '.*\.mobileprovision'",
                                       default_value: nil,
                                       optional: true)
        ]
      end

      def self.description
        "Deletes files created as result of running ipa or sigh"
      end

      def self.author
        "lmirosevic"
      end

      def self.is_supported?(platform)
        [:ios, :mac].include? platform
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
fastlane-1.29.0 lib/fastlane/actions/clean_build_artifacts.rb
fastlane-1.28.0 lib/fastlane/actions/clean_build_artifacts.rb
fastlane-1.27.0 lib/fastlane/actions/clean_build_artifacts.rb
fastlane-1.26.0 lib/fastlane/actions/clean_build_artifacts.rb
fastlane-1.25.1 lib/fastlane/actions/clean_build_artifacts.rb
fastlane-1.25.0 lib/fastlane/actions/clean_build_artifacts.rb
fastlane-1.24.0 lib/fastlane/actions/clean_build_artifacts.rb
fastlane-1.23.0 lib/fastlane/actions/clean_build_artifacts.rb
fastlane-1.22.0 lib/fastlane/actions/clean_build_artifacts.rb
fastlane-1.21.0 lib/fastlane/actions/clean_build_artifacts.rb