Sha256: 291007fc3278986b886a0969fbfe5f6520edf5991cb1939c907e8cc6f5d29701

Contents?: true

Size: 1.75 KB

Versions: 2

Compression:

Stored size: 1.75 KB

Contents

# frozen_string_literal: true

module Dri
  module Utils
    module Constants
      PIPELINE_ENVIRONMENTS =
        {
          production: {
            name: "production",
            url: "https://ops.gitlab.net/gitlab-org/quality/production",
            project_id: "275",
            search_hours_ago: 12
          },
          staging: {
            name: "staging",
            url: "https://ops.gitlab.net/gitlab-org/quality/staging",
            project_id: "263",
            search_hours_ago: 12
          },
          canary: {
            name: "canary.gitlab.com",
            url: "https://ops.gitlab.net/gitlab-org/quality/canary",
            project_id: "276",
            search_hours_ago: 12
          },
          staging_canary: {
            name: "canary.staging.gitlab.com",
            url: "https://ops.gitlab.net/gitlab-org/quality/staging-canary",
            project_id: "547",
            search_hours_ago: 12
          },
          nightly: {
            name: "nightly",
            url: "https://gitlab.com/gitlab-org/quality/nightly",
            project_id: "7523614",
            search_hours_ago: 24
          },
          pre_prod: {
            name: "pre.gitlab.com",
            url: "https://ops.gitlab.net/gitlab-org/quality/preprod",
            project_id: "294",
            search_hours_ago: 12
          },
          staging_ref: {
            name: "staging-ref",
            url: "https://ops.gitlab.net/gitlab-org/quality/staging-ref",
            project_id: "536",
            search_hours_ago: 12
          },
          master: {
            name: "master",
            url: "https://gitlab.com/gitlab-org/gitlab-qa-mirror",
            project_id: "14707715",
            search_hours_ago: 6
          }
        }.freeze
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dri-0.6.1 lib/dri/utils/constants.rb
dri-0.6.0 lib/dri/utils/constants.rb