BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
470f5535
Unverified
Commit
470f5535
authored
May 21, 2018
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add check for top-level ee directory in CE repo
Signed-off-by:
Dmitriy Zaporozhets
<
dmitriy.zaporozhets@gmail.com
>
parent
cf7f3606
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
0 deletions
+20
-0
.gitlab-ci.yml
.gitlab-ci.yml
+12
-0
no-ee-check
scripts/no-ee-check
+8
-0
No files found.
.gitlab-ci.yml
View file @
470f5535
...
...
@@ -836,3 +836,15 @@ gitlab_git_test:
cache
:
{}
script
:
-
spec/support/prepare-gitlab-git-test-for-commit --check-for-changes
no_ee_check
:
<<
:
*dedicated-runner
<<
:
*except-docs-and-qa
variables
:
SETUP_DB
:
"
false"
before_script
:
[]
cache
:
{}
script
:
-
scripts/no-ee-check
only
:
-
//@gitlab-org/gitlab-ce
scripts/no-ee-check
0 → 100755
View file @
470f5535
#!/usr/bin/env ruby
ee_path
=
File
.
join
(
File
.
expand_path
(
File
.
dirname
(
__FILE__
)),
'../ee'
)
result
=
Dir
.
exist?
(
ee_path
)
if
result
puts
'The repository contains /ee directory. There should be no /ee directory in CE repo.'
exit
1
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment