diff mbox series

[OSSTEST,2/2] make-flight: Drop arm64 with Linux before 4.10

Message ID 20191023150103.31562-2-ian.jackson@eu.citrix.com (mailing list archive)
State New, archived
Headers show
Series None | expand

Commit Message

Ian Jackson Oct. 23, 2019, 3:01 p.m. UTC
The driver for the laxtons' network cards is not in 4.4 (and that's
quite old).  Our ThunderX's may even require something more recent but
we will cross that bridge when we see it.

Effect is to drop the following jobs:
  linux-4.1  *arm64*
  linux-4.4  *arm64*
  linux-4.9  *arm64*
(Checked by eyeballing standalone-generate-dump-flight-runvars diff.)

CC: Julien Grall <julien.grall@arm.com>
CC: Stefano Stabellini <sstabellini@kernel.org>
Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
---
 make-flight | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

Comments

Julien Grall Oct. 23, 2019, 3:07 p.m. UTC | #1
Hi Ian,

On 23/10/2019 16:01, Ian Jackson wrote:
> The driver for the laxtons' network cards is not in 4.4 (and that's
> quite old).  Our ThunderX's may even require something more recent but
> we will cross that bridge when we see it.
> 
> Effect is to drop the following jobs:
>    linux-4.1  *arm64*
>    linux-4.4  *arm64*
>    linux-4.9  *arm64*
> (Checked by eyeballing standalone-generate-dump-flight-runvars diff.)
> 
> CC: Julien Grall <julien.grall@arm.com>
> CC: Stefano Stabellini <sstabellini@kernel.org>
> Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>

FWIW:

Acked-by: Julien Grall <julien.grall@arm.com>

Cheers,

> ---
>   make-flight | 8 +++++++-
>   1 file changed, 7 insertions(+), 1 deletion(-)
> 
> diff --git a/make-flight b/make-flight
> index f90fe77c..be620c6d 100755
> --- a/make-flight
> +++ b/make-flight
> @@ -183,7 +183,7 @@ job_create_test_filter_callback () {
>   arch_branch_filter_callback () {
>     local arch=$1
>     case "$arch" in
> -  arm*)
> +  armhf)
>           case "$branch" in
>           linux-3.0) return 1;;
>           linux-3.4) return 1;;
> @@ -191,6 +191,12 @@ arch_branch_filter_callback () {
>           linux-3.14) return 1;;
>           esac
>           ;;
> +  arm64)
> +        case "$branch" in
> +        linux-3.*) return 1;;
> +        linux-4.?) return 1;;
> +        esac
> +        ;;
>     esac
>     case "$arch" in
>     arm*)
>
Ian Jackson Oct. 23, 2019, 3:24 p.m. UTC | #2
Julien Grall writes ("Re: [OSSTEST PATCH 2/2] make-flight: Drop arm64 with Linux before 4.10"):
> On 23/10/2019 16:01, Ian Jackson wrote:
> > The driver for the laxtons' network cards is not in 4.4 (and that's
> > quite old).  Our ThunderX's may even require something more recent but
> > we will cross that bridge when we see it.
> > 
> > Effect is to drop the following jobs:
> >    linux-4.1  *arm64*
> >    linux-4.4  *arm64*
> >    linux-4.9  *arm64*
> > (Checked by eyeballing standalone-generate-dump-flight-runvars diff.)
> > 
> > CC: Julien Grall <julien.grall@arm.com>
> > CC: Stefano Stabellini <sstabellini@kernel.org>
> > Signed-off-by: Ian Jackson <ian.jackson@eu.citrix.com>
> 
> FWIW:
> 
> Acked-by: Julien Grall <julien.grall@arm.com>

Thanks.  I am waiting for a push through on my previous osstest
commits so I will probably push this to pretest tomorrow.

Ian.
diff mbox series

Patch

diff --git a/make-flight b/make-flight
index f90fe77c..be620c6d 100755
--- a/make-flight
+++ b/make-flight
@@ -183,7 +183,7 @@  job_create_test_filter_callback () {
 arch_branch_filter_callback () {
   local arch=$1
   case "$arch" in
-  arm*)
+  armhf)
         case "$branch" in
         linux-3.0) return 1;;
         linux-3.4) return 1;;
@@ -191,6 +191,12 @@  arch_branch_filter_callback () {
         linux-3.14) return 1;;
         esac
         ;;
+  arm64)
+        case "$branch" in
+        linux-3.*) return 1;;
+        linux-4.?) return 1;;
+        esac
+        ;;
   esac
   case "$arch" in
   arm*)