in lib/runner.rb [7:21]
def initialize
puts '* Gitlab CI Runner started'
puts '* Waiting for builds'
loop do
if running?
abort_if_timeout
push_build
update_build
else
get_build
end
sleep 5
end
end