Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
allocbench
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Florian Fischer
allocbench
Commits
c6a8e026
Commit
c6a8e026
authored
5 years ago
by
Florian Fischer
Browse files
Options
Downloads
Patches
Plain Diff
always output if we retrieve aqn artifact
parent
15ff4cfc
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/artifact.py
+2
-2
2 additions, 2 deletions
src/artifact.py
with
2 additions
and
2 deletions
src/artifact.py
+
2
−
2
View file @
c6a8e026
...
...
@@ -26,7 +26,7 @@ import os
import
subprocess
import
src.globalvars
from
src.util
import
print_info
,
print_debug
,
sha1sum
from
src.util
import
print_status
,
print_info
,
print_debug
,
sha1sum
ARTIFACT_STORE_DIR
=
os
.
path
.
join
(
src
.
globalvars
.
allocbenchdir
,
"
cache
"
)
...
...
@@ -47,7 +47,7 @@ class Artifact:
"""
Run cmd to retrieve the artifact
"""
os
.
makedirs
(
self
.
basedir
,
exist_ok
=
True
)
print_
info
(
f
'
Retrieving artifact
"
{
self
.
name
}
"'
)
print_
status
(
f
'
Retrieving artifact
"
{
self
.
name
}
"
...
'
)
print_debug
(
f
"
By running:
{
cmd
}
in
{
self
.
basedir
}
"
)
proc
=
subprocess
.
run
(
cmd
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment