Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2022-10-04 06:08:52 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2022-10-04 06:08:52 +0300
commit7e96b8ca7aca03af3c66d00c83eff81a3273c107 (patch)
tree1737459ce8db5b0c99694934ef4c48bf1323f391 /spec/support/prepare-gitlab-git-test-for-commit
parente3bac3b0e2bcc39ba899bc38d946ceb6921b7c14 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'spec/support/prepare-gitlab-git-test-for-commit')
-rwxr-xr-xspec/support/prepare-gitlab-git-test-for-commit18
1 files changed, 18 insertions, 0 deletions
diff --git a/spec/support/prepare-gitlab-git-test-for-commit b/spec/support/prepare-gitlab-git-test-for-commit
new file mode 100755
index 00000000000..77c7f309312
--- /dev/null
+++ b/spec/support/prepare-gitlab-git-test-for-commit
@@ -0,0 +1,18 @@
+#!/usr/bin/env ruby
+# frozen_string_literal: true
+
+abort unless [
+ system('spec/support/generate-seed-repo-rb', out: 'spec/support/helpers/seed_repo.rb'),
+ system('spec/support/unpack-gitlab-git-test')
+].all?
+
+exit if ARGV.first != '--check-for-changes'
+
+git_status = IO.popen(%w[git status --porcelain], &:read)
+abort unless $?.success?
+
+puts git_status
+
+if git_status.lines.grep(%r{^.. spec/support/gitlab-git-test.git}).any?
+ abort "error: detected changes in gitlab-git-test.git"
+end