2017-07-31 09:17:14 -04:00
|
|
|
#!/usr/bin/env ruby
|
|
|
|
|
2018-05-14 04:10:29 -04:00
|
|
|
# This script is used both in CI and in local development 'rspec' runs.
|
2017-07-31 09:17:14 -04:00
|
|
|
|
2018-05-14 04:10:29 -04:00
|
|
|
require_relative 'gitaly_test'
|
|
|
|
|
|
|
|
class GitalyTestSpawn
|
|
|
|
include GitalyTest
|
|
|
|
|
|
|
|
def run
|
|
|
|
check_gitaly_config!
|
|
|
|
|
|
|
|
# # Uncomment line below to see all gitaly logs merged into CI trace
|
|
|
|
# spawn('sleep 1; tail -f log/gitaly-test.log')
|
|
|
|
|
|
|
|
pid = start_gitaly
|
|
|
|
|
|
|
|
# In local development this pid file is used by rspec.
|
|
|
|
IO.write(File.expand_path('../tmp/tests/gitaly.pid', __dir__), pid)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
GitalyTestSpawn.new.run
|