← Back to team overview

canonical-ubuntu-qa team mailing list archive

[Merge] qa-jenkins-jobs:rf-image-dl-fail-unstable-return into qa-jenkins-jobs:master

 

Tim Andersson has proposed merging qa-jenkins-jobs:rf-image-dl-fail-unstable-return into qa-jenkins-jobs:master.

Requested reviews:
  Canonical Platform QA Team (canonical-platform-qa)

For more details, see:
https://code.launchpad.net/~canonical-platform-qa/qa-jenkins-jobs/+git/qa-jenkins-jobs/+merge/492699

Mark jobs as unstable if they fail because of ISO download issues
-- 
Your team Canonical Platform QA Team is requested to review the proposed merge of qa-jenkins-jobs:rf-image-dl-fail-unstable-return into qa-jenkins-jobs:master.
diff --git a/jobs/robot-framework-iso-testing/jobs.yaml b/jobs/robot-framework-iso-testing/jobs.yaml
index 12f8eb9..5df2cf4 100644
--- a/jobs/robot-framework-iso-testing/jobs.yaml
+++ b/jobs/robot-framework-iso-testing/jobs.yaml
@@ -101,8 +101,9 @@
                 fi
                 rm -r "${{cache_dir}}"
                 mkdir -p "${{cache_dir}}"
-                retry -t 3 -d 180 -- wget -q "${{iso_url}}" -P "${{cache_dir}}"
-                retry -t 3 -d 180 -- wget -q "${{shasum_url}}" -P "${{cache_dir}}"
+                retry -t 3 -d 180 -- wget -q "${{iso_url}}" -P "${{cache_dir}}" || exit 88
+                retry -t 3 -d 180 -- wget -q "${{shasum_url}}" -P "${{cache_dir}}" || exit 88
+            unstable-return: 88
         - shell:
             command: |
                 #!/bin/bash

Follow ups