@@ -91,10 +91,10 @@ def check_s3_image_exists(_, pipeline_id: str, deploy_job: str):
9191 # Job to s3 directory mapping
9292 deploy_job_to_s3 = {
9393 # Deb
94- "deploy_deb_testing-a7_x64" : f"apttesting.datad0g.com/dists /pipeline-{ pipeline_id } -a7-x86_64/7/binary-x86_64 " ,
95- "deploy_deb_testing-a7_arm64" : f"apttesting.datad0g.com/dists /pipeline-{ pipeline_id } -a7-arm64/7/binary-arm64" ,
96- "deploy_deb_testing-a6_x64" : f"apttesting.datad0g.com/dists /pipeline-{ pipeline_id } -a6-x86_64/6/binary-x86_64 " ,
97- "deploy_deb_testing-a6_arm64" : f"apttesting.datad0g.com/dists /pipeline-{ pipeline_id } -a6-arm64/6/binary-arm64" ,
94+ "deploy_deb_testing-a7_x64" : f"apttesting.datad0g.com/datadog-agent /pipeline-{ pipeline_id } -a7/dists/stable -x86_64/7/binary-amd64 " ,
95+ "deploy_deb_testing-a7_arm64" : f"apttesting.datad0g.com/datadog-agent /pipeline-{ pipeline_id } -a7/dists/stable -arm64/7/binary-arm64" ,
96+ "deploy_deb_testing-a6_x64" : f"apttesting.datad0g.com/datadog-agent /pipeline-{ pipeline_id } -a6/dists/stable -x86_64/6/binary-amd64 " ,
97+ "deploy_deb_testing-a6_arm64" : f"apttesting.datad0g.com/datadog-agent /pipeline-{ pipeline_id } -a6/dists/stable -arm64/6/binary-arm64" ,
9898 # Rpm
9999 "deploy_rpm_testing-a7_x64" : f"yumtesting.datad0g.com/testing/pipeline-{ pipeline_id } -a7/7/x86_64" ,
100100 "deploy_rpm_testing-a7_arm64" : f"yumtesting.datad0g.com/testing/pipeline-{ pipeline_id } -a7/7/aarch64" ,
@@ -119,9 +119,7 @@ def check_s3_image_exists(_, pipeline_id: str, deploy_job: str):
119119 response = s3 .list_objects_v2 (Bucket = bucket , Prefix = path )
120120 exists = "Contents" in response
121121
122- assert exists , (
123- f"Latest job { deploy_job } is outdated, use `inv retry-job { pipeline_id } { deploy_job } ` to run it again or use --no-verify to force deploy"
124- )
122+ assert exists , f"Latest job { deploy_job } is outdated, use `inv retry-job { pipeline_id } { deploy_job } ` to run it again or use --no-verify to force deploy"
125123
126124
127125# creates a stack with the given stack_name if it doesn't already exists
0 commit comments