On 8/13/26 9:06 AM, Ales Musil wrote:
> The ARCH had a proper default in ci.sh which was passed along. That
> was fine for regular tests, however, upgrade tests are executing
> linux-build.sh without specifying the ARCH. Use proper default in
> linux-build.sh.
> 
> Signed-off-by: Ales Musil <[email protected]>
> ---

Hi Ales,

>  .ci/linux-build.sh | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/.ci/linux-build.sh b/.ci/linux-build.sh
> index d9b49b7b6..b51f43cff 100755
> --- a/.ci/linux-build.sh
> +++ b/.ci/linux-build.sh
> @@ -8,7 +8,7 @@ if [ "$NO_DEBUG" = "0" ]; then
>      set -x
>  fi
>  
> -ARCH=${ARCH:-"x86_64"}
> +ARCH=${ARCH:-$(uname -m)}

While this is fine, patch 2/4 just removes this whole line.

I guess we could skip this patch completely or.. keep this one and skip
patch 3/4.

Maybe the latter is better, what do you think?

>  USE_SPARSE=${USE_SPARSE:-"yes"}
>  COMMON_CFLAGS=""
>  OVN_CFLAGS=""

Regards,
Dumitru

_______________________________________________
dev mailing list
[email protected]
https://mail.openvswitch.org/mailman/listinfo/ovs-dev

Reply via email to