mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-20 14:11:11 +00:00
9 lines
263 B
Ruby
Executable File
9 lines
263 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
gitaly_dir = 'tmp/tests/gitaly'
|
|
env = { 'HOME' => File.expand_path('tmp/tests') }
|
|
args = %W[#{gitaly_dir}/gitaly #{gitaly_dir}/config.toml]
|
|
|
|
# Print the PID of the spawned process
|
|
puts spawn(env, *args, [:out, :err] => 'log/gitaly-test.log')
|