Re: [PATCH 2/4] Azure: Rework build the world jobs

2023-09-06 Thread Tom Rini
On Sun, Aug 20, 2023 at 01:31:27PM -0400, Tom Rini wrote:

> Now that we have 3600 minutes per build job, condense and rework things
> such that our overall time largely doesn't change, but we can also
> largely avoid having to re-tweak this job to avoid timeouts.  Given that
> we have 10 threads, we also move a few of the specific sandbox test
> builds to a prior stage.
> 
> Note that while sandbox builds with address sanitization enabled (ASAN)
> not all tests pass, so we limit ourselves to just checking that the
> version test passes for now.
> 
> Link: 
> https://learn.microsoft.com/en-us/azure/devops/pipelines/process/phases?view=azure-devops&tabs=yaml#timeouts
> Signed-off-by: Tom Rini 
> Reviewed-by: Simon Glass 

Applied to u-boot/next, thanks!

-- 
Tom


signature.asc
Description: PGP signature


Re: [PATCH 2/4] Azure: Rework build the world jobs

2023-08-21 Thread Simon Glass
On Sun, 20 Aug 2023 at 11:31, Tom Rini  wrote:
>
> Now that we have 3600 minutes per build job, condense and rework things
> such that our overall time largely doesn't change, but we can also
> largely avoid having to re-tweak this job to avoid timeouts.  Given that
> we have 10 threads, we also move a few of the specific sandbox test
> builds to a prior stage.
>
> Note that while sandbox builds with address sanitization enabled (ASAN)
> not all tests pass, so we limit ourselves to just checking that the
> version test passes for now.
>
> Link: 
> https://learn.microsoft.com/en-us/azure/devops/pipelines/process/phases?view=azure-devops&tabs=yaml#timeouts
> Signed-off-by: Tom Rini 
> ---
> Cc: Simon Glass 
>
> I believe we merged ASAN with the intention of fixing some of the found
> issues later, so this isn't really a functional change.
> ---
>  .azure-pipelines.yml | 100 +++
>  1 file changed, 25 insertions(+), 75 deletions(-)

Reviewed-by: Simon Glass 


[PATCH 2/4] Azure: Rework build the world jobs

2023-08-20 Thread Tom Rini
Now that we have 3600 minutes per build job, condense and rework things
such that our overall time largely doesn't change, but we can also
largely avoid having to re-tweak this job to avoid timeouts.  Given that
we have 10 threads, we also move a few of the specific sandbox test
builds to a prior stage.

Note that while sandbox builds with address sanitization enabled (ASAN)
not all tests pass, so we limit ourselves to just checking that the
version test passes for now.

Link: 
https://learn.microsoft.com/en-us/azure/devops/pipelines/process/phases?view=azure-devops&tabs=yaml#timeouts
Signed-off-by: Tom Rini 
---
Cc: Simon Glass 

I believe we merged ASAN with the intention of fixing some of the found
issues later, so this isn't really a functional change.
---
 .azure-pipelines.yml | 100 +++
 1 file changed, 25 insertions(+), 75 deletions(-)

diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
index fc3188a806f4..ab3f961e01ee 100644
--- a/.azure-pipelines.yml
+++ b/.azure-pipelines.yml
@@ -254,9 +254,17 @@ stages:
   matrix:
 sandbox:
   TEST_PY_BD: "sandbox"
+sandbox_asan:
+  TEST_PY_BD: "sandbox"
+  OVERRIDE: "-a ASAN"
+  TEST_PY_TEST_SPEC: "version"
 sandbox_clang:
   TEST_PY_BD: "sandbox"
   OVERRIDE: "-O clang-16"
+sandbox_clang_asan:
+  TEST_PY_BD: "sandbox"
+  OVERRIDE: "-O clang-16 -a ASAN"
+  TEST_PY_TEST_SPEC: "version"
 sandbox_nolto:
   TEST_PY_BD: "sandbox"
   BUILD_ENV: "NO_LTO=1"
@@ -476,84 +484,26 @@ stages:
   # Use almost the same target division in .travis.yml, only merged
   # 3 small build jobs (arc/microblaze/xtensa) into one.
   matrix:
-arc_nios2_m68k_microblaze_xtensa:
-  BUILDMAN: "arc nios2 microblaze m68k xtensa"
-amlogic:
-  BUILDMAN: "amlogic"
-arm11_arm7_arm920t_arm946es:
-  BUILDMAN: "arm11 arm7 arm920t arm946es"
-arm926ejs:
-  BUILDMAN: "arm926ejs -x freescale,siemens,at91,kirkwood,omap"
-at91_non_armv7:
-  BUILDMAN: "at91 -x armv7"
-at91_non_arm926ejs:
-  BUILDMAN: "at91 -x arm926ejs"
-boundary_engicam_toradex:
-  BUILDMAN: "boundary engicam toradex"
-arm_bcm:
-  BUILDMAN: "bcm -x mips"
-nxp_arm32:
-  BUILDMAN: "freescale -x 
powerpc,m68k,aarch64,ls101,ls102,ls104,ls108,ls20,lx216"
-nxp_ls101x_ls108x:
-  BUILDMAN: "freescale&ls101 freescale&ls108"
-nxp_ls102x:
-  BUILDMAN: "freescale&ls102 -x keymile"
-nxp_ls104x:
-  BUILDMAN: "freescale&ls104"
-nxp_ls20xx_lx216x:
-  BUILDMAN: "freescale&ls20 freescale&lx216"
-imx6:
-  BUILDMAN: "mx6 -x boundary,engicam,freescale,technexion,toradex"
+am33xx_at91_kirkwood_mvebu_omap:
+  BUILDMAN: "am33xx at91_kirkwood mvebu omap -x siemens"
+amlogic_bcm_boundary_engicam_siemens_technexion_oradex:
+  BUILDMAN: "amlogic bcm boundary engicam siemens technexion toradex 
-x mips"
+arm_nxp_minus_imx:
+  BUILDMAN: "freescale -x powerpc,m68k,imx,mx"
 imx:
-  BUILDMAN: "mx -x mx6,imx8,freescale,technexion,toradex"
-imx8_imx9:
-  BUILDMAN: "imx8 imx9 -x engicam,technexion,toradex"
-keymiles_siemens_technexion:
-  BUILDMAN: "keymile siemens technexion"
-keystone2_keystone3:
-  BUILDMAN: "k2 k3 -x siemens,toradex"
-sandbox_asan:
-  BUILDMAN: "sandbox"
-  OVERRIDE: "-a ASAN"
-sandbox_clang_asan:
-  BUILDMAN: "sandbox"
-  OVERRIDE: "-O clang-16 -a ASAN"
-samsung_socfpga_renesas:
-  BUILDMAN: "samsung socfpga renesas"
-sun4i_sun9i:
-  BUILDMAN: "sun4i sun9i"
-sun5i_sun6i:
-  BUILDMAN: "sun5i sun6i"
-sun7i:
-  BUILDMAN: "sun7i"
-sun8i:
-  BUILDMAN: "sun8i"
-sun50i:
-  BUILDMAN: "sun50i"
-arm_catch_all:
-  BUILDMAN: "arm -x 
arm11,arm7,arm9,aarch64,at91,bcm,freescale,kirkwood,mvebu,renesas,siemens,tegra,uniphier,mx,samsung,sunxi,am33xx,omap,toradex,socfpga,k2,k3,zynq"
-sandbox_x86:
-  BUILDMAN: "sandbox x86"
-kirkwood_mvebu_uniphier:
-  BUILDMAN: "kirkwood mvebu uniphier"
-mips:
-  BUILDMAN: "mips"
+  BUILDMAN: "mx imx -x boundary,engicam,technexion,toradex"
+rk:
+  BUILDMAN: "rk"
+sunxi:
+  BUILDMAN: "sunxi"
 powerpc:
-  BUILDMAN: "powerpc -x keymile"
-tegra:
-  BUILDMAN: "tegra -x toradex"
-am33xx_omap:
-  BUILDMAN: "am33xx omap -x siemens"
+  BUILDMAN: "powerpc"
+arm_catch_all:
+  BUILDMAN: "arm -x 
aarch64,am33xx,at91,bcm,ls1,kirkwood,mvebu,omap,rk,siemens,mx,sunxi,technexion,toradex"
 aarch64_catch_all:
-  B