Sha256: f6ec4a30bc35632d09299a3a00ad9cba1e810cc3d8b579cad5e05c169c377fbe
Contents?: true
Size: 1 KB
Versions: 91
Compression:
Stored size: 1 KB
Contents
module Fastlane module Actions class IsCiAction < Action def self.run(params) Helper.ci? end ##################################################### # @!group Documentation ##################################################### def self.description "Is the current run being executed on a CI system, like Jenkins or Travis" end def self.details "The return value of this method is true if fastlane is currently executed on Travis, Jenkins, Circle or a similar CI service" end def self.available_options [] end def self.return_type :bool end def self.authors ["KrauseFx"] end def self.is_supported?(platform) true end def self.example_code [ 'if is_ci puts "I\'m a computer" else say "Hi Human!" end' ] end def self.category :misc end end end end
Version data entries
91 entries across 91 versions & 4 rubygems