Skip to content
Snippets Groups Projects
Commit 27a70018 authored by Grzegorz Bizon's avatar Grzegorz Bizon
Browse files

Do not attach runner to a non-exsiting network in QA

parent 7534f7a8
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -15,6 +15,14 @@ module QA
@tags = %w[qa test]
end
 
def network
shell "docker network inspect #{@network}"
rescue CommandError
'bridge'
else
@network
end
def pull
shell "docker pull #{@image}"
end
Loading
Loading
@@ -22,7 +30,7 @@ module QA
def register!
shell <<~CMD.tr("\n", ' ')
docker run -d --rm --entrypoint=/bin/sh
--network #{@network} --name #{@name}
--network #{network} --name #{@name}
-e CI_SERVER_URL=#{@address}
-e REGISTER_NON_INTERACTIVE=true
-e REGISTRATION_TOKEN=#{@token}
Loading
Loading
Loading
Loading
@@ -3,6 +3,8 @@ require 'open3'
module QA
module Service
module Shellout
CommandError = Class.new(StandardError)
##
# TODO, make it possible to use generic QA framework classes
# as a library - gitlab-org/gitlab-qa#94
Loading
Loading
@@ -14,7 +16,7 @@ module QA
out.each { |line| puts line }
 
if wait.value.exited? && wait.value.exitstatus.nonzero?
raise "Command `#{command}` failed!"
raise CommandError, "Command `#{command}` failed!"
end
end
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment