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
79310399
Commit
79310399
authored
Oct 04, 2021
by
Cheryl Li
Committed by
Aleksei Lipniagov
Oct 04, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update feature_category to domains owned by Testing
parent
e413e8c8
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
9 additions
and
9 deletions
+9
-9
app/controllers/projects/ci/daily_build_group_report_results_controller.rb
...rojects/ci/daily_build_group_report_results_controller.rb
+1
-1
app/workers/all_queues.yml
app/workers/all_queues.yml
+4
-4
app/workers/ci/delete_unit_tests_worker.rb
app/workers/ci/delete_unit_tests_worker.rb
+1
-1
app/workers/ci/pipeline_artifacts/expire_artifacts_worker.rb
app/workers/ci/pipeline_artifacts/expire_artifacts_worker.rb
+1
-1
app/workers/expire_build_artifacts_worker.rb
app/workers/expire_build_artifacts_worker.rb
+1
-1
app/workers/expire_build_instance_artifacts_worker.rb
app/workers/expire_build_instance_artifacts_worker.rb
+1
-1
No files found.
app/controllers/projects/ci/daily_build_group_report_results_controller.rb
View file @
79310399
...
...
@@ -4,7 +4,7 @@ class Projects::Ci::DailyBuildGroupReportResultsController < Projects::Applicati
before_action
:authorize_read_build_report_results!
before_action
:validate_param_type!
feature_category
:co
ntinuous_integration
feature_category
:co
de_testing
def
index
respond_to
do
|
format
|
...
...
app/workers/all_queues.yml
View file @
79310399
...
...
@@ -194,7 +194,7 @@
:tags: []
-
:name: cronjob:ci_delete_unit_tests
:worker_name: Ci::DeleteUnitTestsWorker
:feature_category: :co
ntinuous_integration
:feature_category: :co
de_testing
:has_external_dependencies:
:urgency: :low
:resource_boundary: :unknown
...
...
@@ -203,7 +203,7 @@
:tags: []
-
:name: cronjob:ci_pipeline_artifacts_expire_artifacts
:worker_name: Ci::PipelineArtifacts::ExpireArtifactsWorker
:feature_category: :
continuous_integration
:feature_category: :
build_artifacts
:has_external_dependencies:
:urgency: :low
:resource_boundary: :unknown
...
...
@@ -302,7 +302,7 @@
:tags: []
-
:name: cronjob:expire_build_artifacts
:worker_name: ExpireBuildArtifactsWorker
:feature_category: :
continuous_integration
:feature_category: :
build_artifacts
:has_external_dependencies:
:urgency: :low
:resource_boundary: :unknown
...
...
@@ -2098,7 +2098,7 @@
:tags: []
-
:name: expire_build_instance_artifacts
:worker_name: ExpireBuildInstanceArtifactsWorker
:feature_category: :
continuous_integration
:feature_category: :
build_artifacts
:has_external_dependencies:
:urgency: :low
:resource_boundary: :unknown
...
...
app/workers/ci/delete_unit_tests_worker.rb
View file @
79310399
...
...
@@ -10,7 +10,7 @@ module Ci
include
CronjobQueue
# rubocop:enable Scalability/CronWorkerContext
feature_category
:co
ntinuous_integration
feature_category
:co
de_testing
idempotent!
def
perform
...
...
app/workers/ci/pipeline_artifacts/expire_artifacts_worker.rb
View file @
79310399
...
...
@@ -14,7 +14,7 @@ module Ci
deduplicate
:until_executed
,
including_scheduled:
true
idempotent!
feature_category
:
continuous_integration
feature_category
:
build_artifacts
def
perform
service
=
::
Ci
::
PipelineArtifacts
::
DestroyAllExpiredService
.
new
...
...
app/workers/expire_build_artifacts_worker.rb
View file @
79310399
...
...
@@ -10,7 +10,7 @@ class ExpireBuildArtifactsWorker # rubocop:disable Scalability/IdempotentWorker
include
CronjobQueue
# rubocop:enable Scalability/CronWorkerContext
feature_category
:
continuous_integration
feature_category
:
build_artifacts
def
perform
service
=
Ci
::
JobArtifacts
::
DestroyAllExpiredService
.
new
...
...
app/workers/expire_build_instance_artifacts_worker.rb
View file @
79310399
...
...
@@ -7,7 +7,7 @@ class ExpireBuildInstanceArtifactsWorker # rubocop:disable Scalability/Idempoten
sidekiq_options
retry:
3
feature_category
:
continuous_integration
feature_category
:
build_artifacts
# rubocop: disable CodeReuse/ActiveRecord
def
perform
(
build_id
)
...
...
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