Sha256: a30292d6344d088191ee4792d67970d9c4c7bccee2f724a3cd860c39e69b7384
Contents?: true
Size: 1.09 KB
Versions: 23
Compression:
Stored size: 1.09 KB
Contents
module Gitlab module QA module Scenario module Test module Integration class Mattermost < Scenario::Template def perform(release) Component::Gitlab.perform do |gitlab| gitlab.release = release gitlab.network = 'test' mattermost_hostname = "mattermost.#{gitlab.network}" mattermost_external_url = "http://#{mattermost_hostname}" gitlab.add_network_alias(mattermost_hostname) gitlab.omnibus_config = <<~OMNIBUS mattermost_external_url '#{mattermost_external_url}' OMNIBUS gitlab.instance do Component::Specs.perform do |specs| specs.suite = 'Test::Integration::Mattermost' specs.release = gitlab.release specs.network = gitlab.network specs.args = [gitlab.address, mattermost_external_url] end end end end end end end end end end
Version data entries
23 entries across 23 versions & 1 rubygems