drop i386 from default arches for now

Summary:
We've never quite set things up to run 32-bit tests. We should,
at some point, but for now we're just wasting a bunch of time/
bandwidth downloading them and never testing them.

Test Plan:
Schedule a run and make sure all the same tests are still run,
but half as many images are downloaded...

Reviewers: jskladan, garretraziel

Reviewed By: garretraziel

Subscribers: tflink

Differential Revision: https://phab.qadevel.cloud.fedoraproject.org/D455
This commit is contained in:
Adam Williamson 2015-07-20 07:41:15 -07:00
parent 699be78fac
commit 803573edbc
1 changed files with 2 additions and 1 deletions

View File

@ -19,7 +19,8 @@ from report_job_results import report_results
PERSISTENT = "/var/tmp/openqa_watcher.json"
ISO_PATH = "/var/lib/openqa/factory/iso/"
ARCHES = ['i386', 'x86_64']
# We're not really setup to test 32-bit yet. Add 'i386' when we are.
ARCHES = ['x86_64']
class TriggerException(Exception):