debian-mirror-gitlab/scripts/gitaly-test-build

34 lines
1.1 KiB
Plaintext
Raw Normal View History

2017-09-10 17:25:29 +05:30
#!/usr/bin/env ruby
require 'fileutils'
2018-10-15 14:42:47 +05:30
require_relative 'gitaly_test'
2017-09-10 17:25:29 +05:30
# This script assumes tmp/tests/gitaly already contains the correct
# Gitaly version. We just have to compile it and run its 'bundle
2018-10-15 14:42:47 +05:30
# install'. We have this separate script for that to avoid bundle
# poisoning in CI. This script should only be run in CI.
class GitalyTestBuild
include GitalyTest
2017-09-10 17:25:29 +05:30
2018-10-15 14:42:47 +05:30
def run
abort 'gitaly build failed' unless system(env, 'make', chdir: tmp_tests_gitaly_dir)
2017-09-10 17:25:29 +05:30
2018-10-15 14:42:47 +05:30
check_gitaly_config!
2018-03-17 18:26:18 +05:30
2018-10-15 14:42:47 +05:30
# Starting gitaly further validates its configuration
2020-04-22 19:07:51 +05:30
gitaly_pid = start_gitaly
praefect_pid = start_praefect
Process.kill('TERM', gitaly_pid)
Process.kill('TERM', praefect_pid)
2018-03-17 18:26:18 +05:30
2018-10-15 14:42:47 +05:30
# Make the 'gitaly' executable look newer than 'GITALY_SERVER_VERSION'.
# Without this a gitaly executable created in the setup-test-env job
# will look stale compared to GITALY_SERVER_VERSION.
FileUtils.touch(File.join(tmp_tests_gitaly_dir, 'gitaly'), mtime: Time.now + (1 << 24))
2020-04-22 19:07:51 +05:30
FileUtils.touch(File.join(tmp_tests_gitaly_dir, 'praefect'), mtime: Time.now + (1 << 24))
2018-10-15 14:42:47 +05:30
end
end
2017-09-10 17:25:29 +05:30
2018-10-15 14:42:47 +05:30
GitalyTestBuild.new.run