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
6be736a7
Commit
6be736a7
authored
Sep 11, 2017
by
Lin Jen-Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enable ee_compat_check for forks, but not EE
We exclude known EE projects, and check the project directory name for EE forks.
parent
4f18de70
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
.gitlab-ci.yml
.gitlab-ci.yml
+2
-2
dev.rake
lib/tasks/gitlab/dev.rake
+4
-1
No files found.
.gitlab-ci.yml
View file @
6be736a7
...
...
@@ -413,12 +413,12 @@ downtime_check:
ee_compat_check
:
<<
:
*rake-exec
only
:
-
branches@gitlab-org/gitlab-ce
except
:
-
master
-
tags
-
/^[\d-]+-stable(-ee)?/
-
branches@gitlab-org/gitlab-ee
-
branches@gitlab/gitlab-ee
allow_failure
:
yes
cache
:
key
:
"
ee_compat_check_repo"
...
...
lib/tasks/gitlab/dev.rake
View file @
6be736a7
...
...
@@ -13,7 +13,10 @@ namespace :gitlab do
args
end
if
Gitlab
::
EeCompatCheck
.
new
(
opts
||
{}).
check
if
File
.
basename
(
Rails
.
root
)
==
'gitlab-ee'
puts
"Skipping EE projects"
exit
0
elsif
Gitlab
::
EeCompatCheck
.
new
(
opts
||
{}).
check
exit
0
else
exit
1
...
...
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