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
35deb0c0
Commit
35deb0c0
authored
Jan 23, 2020
by
Alexander Tanayno
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix commands for jobs and artifacts selection
parent
67abf2b7
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
doc/administration/job_artifacts.md
doc/administration/job_artifacts.md
+2
-2
No files found.
doc/administration/job_artifacts.md
View file @
35deb0c0
...
@@ -403,13 +403,13 @@ If you need to manually remove ALL job artifacts associated with multiple jobs,
...
@@ -403,13 +403,13 @@ If you need to manually remove ALL job artifacts associated with multiple jobs,
```
ruby
```
ruby
project
=
Project
.
find_by_full_path
(
'path/to/project'
)
project
=
Project
.
find_by_full_path
(
'path/to/project'
)
builds_with_artifacts
=
project
.
builds
.
with_existing_job_artifacts
builds_with_artifacts
=
project
.
builds
.
with_existing_job_artifacts
(
Ci
::
JobArtifact
.
trace
)
```
```
To select jobs with artifacts across the entire GitLab instance:
To select jobs with artifacts across the entire GitLab instance:
```
ruby
```
ruby
builds_with_artifacts
=
Ci
::
Build
.
with_existing_job_artifacts
builds_with_artifacts
=
Ci
::
Build
.
with_existing_job_artifacts
(
Ci
::
JobArtifact
.
trace
)
```
```
1.
Select the user which will be mentioned in the web UI as erasing the job:
1.
Select the user which will be mentioned in the web UI as erasing the job:
...
...
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