Sha256: 903994921a1d4cf9903a4748e56c247a609fb854990c62832866571012b31458

Contents?: true

Size: 941 Bytes

Versions: 23

Compression:

Stored size: 941 Bytes

Contents

# frozen_string_literal: true

module KnapsackPro
  module Config
    module CI
      # Semaphore Classic is deprecated
      # https://semaphoreci.com/blog/semaphore-classic-deprecation
      class Semaphore < Base
        def node_total
          ENV['SEMAPHORE_THREAD_COUNT']
        end

        def node_index
          index = ENV['SEMAPHORE_CURRENT_THREAD']
          index.to_i - 1 if index
        end

        def node_build_id
          ENV['SEMAPHORE_BUILD_NUMBER']
        end

        def commit_hash
          ENV['REVISION']
        end

        def branch
          ENV['BRANCH_NAME']
        end

        def project_dir
          ENV['SEMAPHORE_PROJECT_DIR']
        end

        def detected
          ENV.key?('SEMAPHORE_BUILD_NUMBER') ? self.class : nil
        end

        def fixed_queue_split
          false
        end

        def ci_provider
          "Semaphore CI 1.0"
        end
      end
    end
  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
knapsack_pro-7.13.0 lib/knapsack_pro/config/ci/semaphore.rb
knapsack_pro-7.12.1 lib/knapsack_pro/config/ci/semaphore.rb
knapsack_pro-7.12.0 lib/knapsack_pro/config/ci/semaphore.rb
knapsack_pro-7.11.0 lib/knapsack_pro/config/ci/semaphore.rb
knapsack_pro-7.10.0 lib/knapsack_pro/config/ci/semaphore.rb
knapsack_pro-7.9.0 lib/knapsack_pro/config/ci/semaphore.rb
knapsack_pro-7.8.2 lib/knapsack_pro/config/ci/semaphore.rb
knapsack_pro-7.8.1 lib/knapsack_pro/config/ci/semaphore.rb
knapsack_pro-7.8.0 lib/knapsack_pro/config/ci/semaphore.rb
knapsack_pro-7.7.0 lib/knapsack_pro/config/ci/semaphore.rb
knapsack_pro-7.6.2 lib/knapsack_pro/config/ci/semaphore.rb
knapsack_pro-7.6.1 lib/knapsack_pro/config/ci/semaphore.rb
knapsack_pro-7.6.0 lib/knapsack_pro/config/ci/semaphore.rb
knapsack_pro-7.1.0 lib/knapsack_pro/config/ci/semaphore.rb
knapsack_pro-7.0.1 lib/knapsack_pro/config/ci/semaphore.rb
knapsack_pro-7.0.0 lib/knapsack_pro/config/ci/semaphore.rb
knapsack_pro-6.0.4 lib/knapsack_pro/config/ci/semaphore.rb
knapsack_pro-6.0.3 lib/knapsack_pro/config/ci/semaphore.rb
knapsack_pro-6.0.2 lib/knapsack_pro/config/ci/semaphore.rb
knapsack_pro-6.0.1 lib/knapsack_pro/config/ci/semaphore.rb