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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
eede4ab1
Commit
eede4ab1
authored
Feb 16, 2017
by
Lin Jen-Shin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
0 for unlimited, disallow blank, feedback:
https://gitlab.com/gitlab-org/gitlab-ce/issues/27762#note_23520780
parent
37cc3aae
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
36 additions
and
35 deletions
+36
-35
app/models/application_setting.rb
app/models/application_setting.rb
+4
-12
app/models/ci/build.rb
app/models/ci/build.rb
+1
-1
app/views/admin/application_settings/_form.html.haml
app/views/admin/application_settings/_form.html.haml
+3
-2
db/migrate/20170214084746_add_default_artifacts_expiration_to_application_settings.rb
...d_default_artifacts_expiration_to_application_settings.rb
+2
-2
db/schema.rb
db/schema.rb
+2
-2
doc/user/admin_area/settings/continuous_integration.md
doc/user/admin_area/settings/continuous_integration.md
+4
-4
spec/models/application_setting_spec.rb
spec/models/application_setting_spec.rb
+14
-12
spec/models/ci/build_spec.rb
spec/models/ci/build_spec.rb
+6
-0
No files found.
app/models/application_setting.rb
View file @
eede4ab1
...
@@ -269,14 +269,6 @@ class ApplicationSetting < ActiveRecord::Base
...
@@ -269,14 +269,6 @@ class ApplicationSetting < ActiveRecord::Base
self
.
repository_storages
=
[
value
]
self
.
repository_storages
=
[
value
]
end
end
def
default_artifacts_expire_in
=
(
value
)
if
value
.
present?
super
(
value
.
squish
)
else
super
(
nil
)
end
end
# Choose one of the available repository storage options. Currently all have
# Choose one of the available repository storage options. Currently all have
# equal weighting.
# equal weighting.
def
pick_repository_storage
def
pick_repository_storage
...
@@ -306,10 +298,10 @@ class ApplicationSetting < ActiveRecord::Base
...
@@ -306,10 +298,10 @@ class ApplicationSetting < ActiveRecord::Base
end
end
def
check_default_artifacts_expire_in
def
check_default_artifacts_expire_in
if
default_artifacts_expire_in
&&
if
default_artifacts_expire_in
.
blank?
ChronicDuration
.
parse
(
default_artifacts_expire_in
).
nil?
errors
.
add
(
:default_artifacts_expiration
,
"is not presented"
)
errors
.
add
(
:default_artifacts_expiration
,
else
"can't be 0. Leave it blank for no expiration"
)
ChronicDuration
.
parse
(
default_artifacts_expire_in
)
end
end
rescue
ChronicDuration
::
DurationParseError
rescue
ChronicDuration
::
DurationParseError
errors
.
add
(
:default_artifacts_expiration
,
"is invalid"
)
errors
.
add
(
:default_artifacts_expiration
,
"is invalid"
)
...
...
app/models/ci/build.rb
View file @
eede4ab1
...
@@ -509,7 +509,7 @@ module Ci
...
@@ -509,7 +509,7 @@ module Ci
def
artifacts_expire_in
=
(
value
)
def
artifacts_expire_in
=
(
value
)
self
.
artifacts_expire_at
=
self
.
artifacts_expire_at
=
if
value
if
value
Time
.
now
+
ChronicDuration
.
parse
(
value
)
ChronicDuration
.
parse
(
value
)
&
.
seconds
&
.
from_now
end
end
end
end
...
...
app/views/admin/application_settings/_form.html.haml
View file @
eede4ab1
...
@@ -219,10 +219,11 @@
...
@@ -219,10 +219,11 @@
.col-sm-10
.col-sm-10
=
f
.
text_field
:default_artifacts_expire_in
,
class:
'form-control'
=
f
.
text_field
:default_artifacts_expire_in
,
class:
'form-control'
.help-block
.help-block
Set the default expiration time for each job's artifacts
Set the default expiration time for each job's artifacts.
0 for unlimited.
=
surround
'('
,
')'
do
=
surround
'('
,
')'
do
=
link_to
'syntax'
,
help_page_path
(
'ci/yaml/README'
,
anchor:
'artifactsexpire_in'
)
=
link_to
'syntax'
,
help_page_path
(
'ci/yaml/README'
,
anchor:
'artifactsexpire_in'
)
=
link_to
icon
(
'question-circle'
),
help_page_path
(
'user/admin_area/settings/continuous_integration'
,
anchor:
'default-artifacts-expiration
-time
'
)
=
link_to
icon
(
'question-circle'
),
help_page_path
(
'user/admin_area/settings/continuous_integration'
,
anchor:
'default-artifacts-expiration'
)
-
if
Gitlab
.
config
.
registry
.
enabled
-
if
Gitlab
.
config
.
registry
.
enabled
%fieldset
%fieldset
...
...
db/migrate/20170214084746_add_default_artifacts_expiration_to_application_settings.rb
View file @
eede4ab1
...
@@ -5,7 +5,7 @@ class AddDefaultArtifactsExpirationToApplicationSettings < ActiveRecord::Migrati
...
@@ -5,7 +5,7 @@ class AddDefaultArtifactsExpirationToApplicationSettings < ActiveRecord::Migrati
def
change
def
change
add_column
:application_settings
,
add_column
:application_settings
,
:default_artifacts_expire_in
,
:default_artifacts_expire_in
,
:string
,
:string
,
null:
true
null:
false
,
default:
'0'
end
end
end
end
db/schema.rb
View file @
eede4ab1
...
@@ -111,7 +111,7 @@ ActiveRecord::Schema.define(version: 20170214111112) do
...
@@ -111,7 +111,7 @@ ActiveRecord::Schema.define(version: 20170214111112) do
t
.
boolean
"plantuml_enabled"
t
.
boolean
"plantuml_enabled"
t
.
integer
"max_pages_size"
,
default:
100
,
null:
false
t
.
integer
"max_pages_size"
,
default:
100
,
null:
false
t
.
integer
"terminal_max_session_time"
,
default:
0
,
null:
false
t
.
integer
"terminal_max_session_time"
,
default:
0
,
null:
false
t
.
string
"default_artifacts_expire_in"
,
limit:
255
t
.
string
"default_artifacts_expire_in"
,
default:
'0'
,
null:
false
end
end
create_table
"audit_events"
,
force: :cascade
do
|
t
|
create_table
"audit_events"
,
force: :cascade
do
|
t
|
...
...
doc/user/admin_area/settings/continuous_integration.md
View file @
eede4ab1
...
@@ -18,13 +18,13 @@ that this setting is set for each job.
...
@@ -18,13 +18,13 @@ that this setting is set for each job.
[
art-yml
]:
../../../administration/build_artifacts
[
art-yml
]:
../../../administration/build_artifacts
## Default artifacts expiration
time
## Default artifacts expiration
The default expiration time of the
[
build
artifacts
][
art-yml
]
can be set in
The default expiration time of the
[
job
artifacts
][
art-yml
]
can be set in
the Admin area of your GitLab instance. The syntax of duration is described
the Admin area of your GitLab instance. The syntax of duration is described
in
[
artifacts:expire_in
][
duration-syntax
]
. The default is
`30 days`
. Note that
in
[
artifacts:expire_in
][
duration-syntax
]
. The default is
`30 days`
. Note that
this setting is set for each job.
Leave it blank if you don't want to se
t
this setting is set for each job.
Set it to 0 if you don't want defaul
t
default expiration time
.
expiration
.
1.
Go to
**Admin area > Settings**
(
`/admin/application_settings`
).
1.
Go to
**Admin area > Settings**
(
`/admin/application_settings`
).
...
...
spec/models/application_setting_spec.rb
View file @
eede4ab1
...
@@ -30,20 +30,16 @@ describe ApplicationSetting, models: true do
...
@@ -30,20 +30,16 @@ describe ApplicationSetting, models: true do
end
end
describe
'default_artifacts_expire_in'
do
describe
'default_artifacts_expire_in'
do
it
'sets an error if it
is invalid
'
do
it
'sets an error if it
cannot parse
'
do
setting
.
update
(
default_artifacts_expire_in:
'a'
)
setting
.
update
(
default_artifacts_expire_in:
'a'
)
expect
(
setting
).
to
be_invalid
expect_invalid
expect
(
setting
.
errors
.
messages
)
.
to
have_key
(
:default_artifacts_expiration
)
end
end
it
'
does not allow 0
'
do
it
'
sets an error if it is blank
'
do
setting
.
update
(
default_artifacts_expire_in:
'
0
'
)
setting
.
update
(
default_artifacts_expire_in:
'
'
)
expect
(
setting
).
to
be_invalid
expect_invalid
expect
(
setting
.
errors
.
messages
)
.
to
have_key
(
:default_artifacts_expiration
)
end
end
it
'sets the value if it is valid'
do
it
'sets the value if it is valid'
do
...
@@ -53,11 +49,17 @@ describe ApplicationSetting, models: true do
...
@@ -53,11 +49,17 @@ describe ApplicationSetting, models: true do
expect
(
setting
.
default_artifacts_expire_in
).
to
eq
(
'30 days'
)
expect
(
setting
.
default_artifacts_expire_in
).
to
eq
(
'30 days'
)
end
end
it
'
does not set it if it is blank
'
do
it
'
sets the value if it is 0
'
do
setting
.
update
(
default_artifacts_expire_in:
'
'
)
setting
.
update
(
default_artifacts_expire_in:
'
0
'
)
expect
(
setting
).
to
be_valid
expect
(
setting
).
to
be_valid
expect
(
setting
.
default_artifacts_expire_in
).
to
be_nil
expect
(
setting
.
default_artifacts_expire_in
).
to
eq
(
'0'
)
end
def
expect_invalid
expect
(
setting
).
to
be_invalid
expect
(
setting
.
errors
.
messages
)
.
to
have_key
(
:default_artifacts_expiration
)
end
end
end
end
...
...
spec/models/ci/build_spec.rb
View file @
eede4ab1
...
@@ -166,6 +166,12 @@ describe Ci::Build, :models do
...
@@ -166,6 +166,12 @@ describe Ci::Build, :models do
is_expected
.
to
be_nil
is_expected
.
to
be_nil
end
end
it
'when setting to 0'
do
build
.
artifacts_expire_in
=
'0'
is_expected
.
to
be_nil
end
end
end
describe
'#commit'
do
describe
'#commit'
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