← Back to team overview

canonical-ubuntu-qa team mailing list archive

[Merge] ~andersson123/qa-jenkins-jobs:actually-download-iso into qa-jenkins-jobs:master

 

Tim Andersson has proposed merging ~andersson123/qa-jenkins-jobs:actually-download-iso into qa-jenkins-jobs:master.

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

For more details, see:
https://code.launchpad.net/~andersson123/qa-jenkins-jobs/+git/qa-jenkins-jobs/+merge/471139
-- 
Your team Canonical Platform QA Team is requested to review the proposed merge of ~andersson123/qa-jenkins-jobs:actually-download-iso into qa-jenkins-jobs:master.
diff --git a/jobs/hardware-iso-testing/jobs.yaml b/jobs/hardware-iso-testing/jobs.yaml
index be255d0..31eb176 100644
--- a/jobs/hardware-iso-testing/jobs.yaml
+++ b/jobs/hardware-iso-testing/jobs.yaml
@@ -44,9 +44,9 @@
             cd hardware-installer-testing/
             development_release=$(distro-info --devel || echo UNKNOWN)
             if [ {release} = $development_release ]; then
-                iso_url="https://cdimage.ubuntu.com/daily-live/current";
+                iso_url="https://cdimage.ubuntu.com/daily-live/current/{release}-desktop-amd64.iso";
             else
-                iso_url="https://cdimage.ubuntu.com/{release}/daily-live/current";
+                iso_url="https://cdimage.ubuntu.com/{release}/daily-live/current/{release}-desktop-amd64.iso";
             fi
             python3 ./scripts/call_testflinger_job.py --job-config test-definitions/{release}/$TEST_CASE.json --c3-machine-id {dut-id} --iso-url $iso_url
 
@@ -91,3 +91,4 @@
     publishers:
       - archive:
           artifacts: 'hardware-installer-testing/artifacts/*'
+              only-if-successful: false

References