summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2021-03-27 19:09:35 +0100
committerJan Holthuis <jan.holthuis@ruhr-uni-bochum.de>2021-03-27 19:09:35 +0100
commit21258d13d43f345f4dbdeb0a5a5a92f74ac95796 (patch)
tree632f1ab31fd6cf25675a26048403e2db0cbbe07f
parent24321717ee81eff6077eab509977d778350cc7f4 (diff)
tools/collect_artifacts_metadata.py: Disable check if artifact exists
-rw-r--r--tools/collect_artifacts_metadata.py18
1 files changed, 10 insertions, 8 deletions
diff --git a/tools/collect_artifacts_metadata.py b/tools/collect_artifacts_metadata.py
index d9678ca7a3..8ca8ac53fb 100644
--- a/tools/collect_artifacts_metadata.py
+++ b/tools/collect_artifacts_metadata.py
@@ -36,14 +36,16 @@ for output_name, output_data in job_data["outputs"].items():
continue
artifact_data = json.loads(output_data)
- print("Checking if package actually exists...", end="")
- url = artifact_data["file_url"]
- package_exists = url_exists(url)
- if not package_exists:
- print(f"fail ({url})")
- missing_artifacts = True
- continue
- print("ok")
+ # FIXME: Unfortunately this doesn't work because the server responds with
+ # "403 Forbidden". We should reenable it when we figure out the issue
+ # print("Checking if package actually exists...", end="")
+ # url = artifact_data["file_url"]
+ # package_exists = url_exists(url)
+ # if not package_exists:
+ # print(f"fail ({url})")
+ # missing_artifacts = True
+ # continue
+ # print("ok")
manifest_data[slug] = artifact_data