diff options
author | Tom Rini <trini@konsulko.com> | 2024-06-18 08:18:50 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2024-06-26 09:30:47 -0600 |
commit | ebd60ff0386da5762fe43a66287d5f3100a95ef8 (patch) | |
tree | 2c742103db27c2649f2bc3b13941e079aafc947f /.azure-pipelines.yml | |
parent | acc6be723af06bcf857a5a720dc336bcab57b9a7 (diff) | |
download | u-boot-ebd60ff0386da5762fe43a66287d5f3100a95ef8.tar.gz u-boot-ebd60ff0386da5762fe43a66287d5f3100a95ef8.tar.bz2 u-boot-ebd60ff0386da5762fe43a66287d5f3100a95ef8.zip |
Azure: Update some job breakdowns so we build the world again
As part of commit 9aeac898da66 ("Azure: Rework build the world jobs") I
made a few mistakes. An errant '_' meant that we built neither at91 nor
kirkwood platforms. Further, the non-freescale (NXP) "LS1xxx" platforms
were also not being built. Adjust some jobs to have these be built
again.
Fixes: 9aeac898da66 ("Azure: Rework build the world jobs")
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to '.azure-pipelines.yml')
-rw-r--r-- | .azure-pipelines.yml | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 2c2d0809ca..116ce903b0 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -9,9 +9,9 @@ variables: container_option: -u 0 work_dir: /u # We define all of these as variables so we can easily reference them twice - am33xx_at91_kirkwood_mvebu_omap: "am33xx at91_kirkwood mvebu omap -x siemens" + am33xx_kirkwood_ls1_mvebu_omap: "am33xx kirkwood ls1 mvebu omap -x siemens,freescale" amlogic_bcm_boundary_engicam_siemens_technexion_oradex: "amlogic bcm boundary engicam siemens technexion toradex -x mips" - arm_nxp_minus_imx: "freescale -x powerpc,m68k,imx,mx" + arm_nxp_minus_imx_and_at91: "at91 freescale -x powerpc,m68k,imx,mx" imx: "mx imx -x boundary,engicam,technexion,toradex" rk: "rk" sunxi: "sunxi" @@ -487,12 +487,12 @@ stages: # We split the world up in to 10 jobs as we can have at most 10 # parallel jobs going on the free tier of Azure. matrix: - am33xx_at91_kirkwood_mvebu_omap: - BUILDMAN: $(am33xx_at91_kirkwood_mvebu_omap) + am33xx_kirkwood_ls1_mvebu_omap: + BUILDMAN: $(am33xx_kirkwood_ls1_mvebu_omap) amlogic_bcm_boundary_engicam_siemens_technexion_oradex: BUILDMAN: $(amlogic_bcm_boundary_engicam_siemens_technexion_oradex) - arm_nxp_minus_imx: - BUILDMAN: $(arm_nxp_minus_imx) + arm_nxp_minus_imx_and_at91: + BUILDMAN: $(arm_nxp_minus_imx_and_at91) imx: BUILDMAN: $(imx) rk: |