[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-devel] [OSSTEST PATCH 3/3] make-flight: Shed some ARM64 load
Currently we have only two ARM64 boxes and now that the builds are passing, the tests have become a bottleneck. Cut them down for now. This patch should be reverted when we have more ARM64 capacity, which is being looked into. We drop these tests: test-arm64-arm64-xl-multivcpu test-arm64-arm64-xl-rtds test-arm64-arm64-libvirt test-arm64-arm64-libvirt-qcow2 We drop all these on all branches, except: linux-arm-xen libvirt (Verified with OSSTEST_CONFIG=standalone-config-example eatmydata ./standalone-generate-dump-flight-runvars Of course the libvirt branches lack the xl tests already.) CC: Julien Grall <julien.grall@xxxxxxx> CC: Stefano Stabellini <sstabellini@xxxxxxxxxx> Signed-off-by: Ian Jackson <Ian.Jackson@xxxxxxxxxxxxx> --- make-flight | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/make-flight b/make-flight index 39ef6de..7833605 100755 --- a/make-flight +++ b/make-flight @@ -104,6 +104,19 @@ job_create_test_filter_callback () { local xenarch=$1; shift local dom0arch=$1; shift + # cut down the arm64 tests temporarily, due to lack of capacity + case "$branch" in + *arm*|*libvirt*) ;; + *) + case "$job" in + test-arm64-arm64-xl-multivcpu) return 1 ;; + test-arm64-arm64-xl-rtds) return 1 ;; + test-arm64-arm64-libvirt) return 1 ;; + test-arm64-arm64-libvirt-qcow2) return 1 ;; + esac + ;; + esac + case "$branch" in xen-unstable-smoke) case "$job" in -- 2.1.4 _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |