Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
a9c4dec5
Commit
a9c4dec5
authored
Aug 16, 2018
by
Michael Kozono
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backport Repository#keep_around changes from EE to CE
parent
a0cfc1b6
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
44 additions
and
18 deletions
+44
-18
app/models/ci/pipeline.rb
app/models/ci/pipeline.rb
+1
-2
app/models/diff_note.rb
app/models/diff_note.rb
+10
-6
app/models/merge_request_diff.rb
app/models/merge_request_diff.rb
+1
-3
app/models/repository.rb
app/models/repository.rb
+14
-7
spec/models/repository_spec.rb
spec/models/repository_spec.rb
+18
-0
No files found.
app/models/ci/pipeline.rb
View file @
a9c4dec5
...
@@ -649,8 +649,7 @@ module Ci
...
@@ -649,8 +649,7 @@ module Ci
def
keep_around_commits
def
keep_around_commits
return
unless
project
return
unless
project
project
.
repository
.
keep_around
(
self
.
sha
)
project
.
repository
.
keep_around
(
self
.
sha
,
self
.
before_sha
)
project
.
repository
.
keep_around
(
self
.
before_sha
)
end
end
def
valid_source
def
valid_source
...
...
app/models/diff_note.rb
View file @
a9c4dec5
...
@@ -191,14 +191,18 @@ class DiffNote < Note
...
@@ -191,14 +191,18 @@ class DiffNote < Note
end
end
def
keep_around_commits
def
keep_around_commits
project
.
repository
.
keep_around
(
self
.
original_position
.
base_sha
)
shas
=
[
project
.
repository
.
keep_around
(
self
.
original_position
.
start_sha
)
self
.
original_position
.
base_sha
,
project
.
repository
.
keep_around
(
self
.
original_position
.
head_sha
)
self
.
original_position
.
start_sha
,
self
.
original_position
.
head_sha
]
if
self
.
position
!=
self
.
original_position
if
self
.
position
!=
self
.
original_position
project
.
repository
.
keep_around
(
self
.
position
.
base_sha
)
shas
<<
self
.
position
.
base_sha
project
.
repository
.
keep_around
(
self
.
position
.
start_sha
)
shas
<<
self
.
position
.
start_sha
project
.
repository
.
keep_around
(
self
.
position
.
head_sha
)
shas
<<
self
.
position
.
head_sha
end
end
project
.
repository
.
keep_around
(
*
shas
)
end
end
end
end
app/models/merge_request_diff.rb
View file @
a9c4dec5
...
@@ -314,9 +314,7 @@ class MergeRequestDiff < ActiveRecord::Base
...
@@ -314,9 +314,7 @@ class MergeRequestDiff < ActiveRecord::Base
def
keep_around_commits
def
keep_around_commits
[
repository
,
merge_request
.
source_project
.
repository
].
uniq
.
each
do
|
repo
|
[
repository
,
merge_request
.
source_project
.
repository
].
uniq
.
each
do
|
repo
|
repo
.
keep_around
(
start_commit_sha
)
repo
.
keep_around
(
start_commit_sha
,
head_commit_sha
,
base_commit_sha
)
repo
.
keep_around
(
head_commit_sha
)
repo
.
keep_around
(
base_commit_sha
)
end
end
end
end
end
end
app/models/repository.rb
View file @
a9c4dec5
...
@@ -247,15 +247,22 @@ class Repository
...
@@ -247,15 +247,22 @@ class Repository
# Git GC will delete commits from the repository that are no longer in any
# Git GC will delete commits from the repository that are no longer in any
# branches or tags, but we want to keep some of these commits around, for
# branches or tags, but we want to keep some of these commits around, for
# example if they have comments or CI builds.
# example if they have comments or CI builds.
def
keep_around
(
sha
)
#
return
unless
sha
.
present?
&&
commit_by
(
oid:
sha
)
# For Geo's sake, pass in multiple shas rather than calling it multiple times,
# to avoid unnecessary syncing.
def
keep_around
(
*
shas
)
shas
.
each
do
|
sha
|
begin
next
unless
sha
.
present?
&&
commit_by
(
oid:
sha
)
return
if
kept_around?
(
sha
)
next
if
kept_around?
(
sha
)
# This will still fail if the file is corrupted (e.g. 0 bytes)
# This will still fail if the file is corrupted (e.g. 0 bytes)
raw_repository
.
write_ref
(
keep_around_ref_name
(
sha
),
sha
,
shell:
false
)
raw_repository
.
write_ref
(
keep_around_ref_name
(
sha
),
sha
,
shell:
false
)
rescue
Gitlab
::
Git
::
CommandError
=>
ex
rescue
Gitlab
::
Git
::
CommandError
=>
ex
Rails
.
logger
.
error
"Unable to create keep-around reference for repository
#{
disk_path
}
:
#{
ex
}
"
Rails
.
logger
.
error
"Unable to create keep-around reference for repository
#{
disk_path
}
:
#{
ex
}
"
end
end
end
end
def
kept_around?
(
sha
)
def
kept_around?
(
sha
)
...
...
spec/models/repository_spec.rb
View file @
a9c4dec5
...
@@ -2005,6 +2005,24 @@ describe Repository do
...
@@ -2005,6 +2005,24 @@ describe Repository do
File
.
delete
(
path
)
File
.
delete
(
path
)
end
end
context
'for multiple SHAs'
do
it
'skips non-existent SHAs'
do
repository
.
keep_around
(
'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'
,
sample_commit
.
id
)
expect
(
repository
.
kept_around?
(
sample_commit
.
id
)).
to
be_truthy
end
it
'skips already-kept-around SHAs'
do
repository
.
keep_around
(
sample_commit
.
id
)
expect
(
repository
.
raw_repository
).
to
receive
(
:write_ref
).
exactly
(
1
).
and_call_original
repository
.
keep_around
(
sample_commit
.
id
,
another_sample_commit
.
id
)
expect
(
repository
.
kept_around?
(
another_sample_commit
.
id
)).
to
be_truthy
end
end
end
end
describe
'#update_ref'
do
describe
'#update_ref'
do
...
...
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