Skip to content

Commit

Permalink
donot save cache results
Browse files Browse the repository at this point in the history
Signed-off-by: vsoch <vsoch@users.noreply.github.com>
  • Loading branch information
vsoch committed Aug 1, 2022
1 parent 53fd3ef commit cf22662
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions get_artifacts.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ def download_artifacts(artifacts, output, days):
os.makedirs(output)

# Make cache output and results output
for subpath in ["cache", "results"]:
for subpath in ["results"]:
path = os.path.join(output, subpath)
if not os.path.exists(path):
os.makedirs(path)
Expand Down Expand Up @@ -229,7 +229,7 @@ def download_artifacts(artifacts, output, days):

save_to = os.path.join(output, "results")
if artifact["name"].startswith("cache"):
save_to = os.path.join(output, "cache")
continue

# Loop through files, add those that aren't present
for filename in recursive_find(tmp):
Expand Down

0 comments on commit cf22662

Please sign in to comment.