aboutsummaryrefslogtreecommitdiff
path: root/.azure-pipelines.yml
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2023-08-20 13:31:28 -0400
committerTom Rini <trini@konsulko.com>2023-09-06 13:51:19 -0400
commit562ed115e7b62fc8cdf61a9ea4577588d705086b (patch)
tree2d67b981f1753de6efa5fbbe9864f33ba24472b7 /.azure-pipelines.yml
parent9aeac898da66dda24c4b79fb485af40655353c97 (diff)
downloadu-boot-562ed115e7b62fc8cdf61a9ea4577588d705086b.zip
u-boot-562ed115e7b62fc8cdf61a9ea4577588d705086b.tar.gz
u-boot-562ed115e7b62fc8cdf61a9ea4577588d705086b.tar.bz2
CI: Combine tools-only and envtools jobs
These jobs are to confirm specific build targets, on a Linux host. We can safely combine these two build tests, with a make mrproper in between. Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to '.azure-pipelines.yml')
-rw-r--r--.azure-pipelines.yml13
1 files changed, 2 insertions, 11 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
index 978d666..9dfb07d 100644
--- a/.azure-pipelines.yml
+++ b/.azure-pipelines.yml
@@ -126,7 +126,7 @@ stages:
./tools/buildman/buildman --maintainer-check || exit 0
- job: tools_only
- displayName: 'Ensure host tools build'
+ displayName: 'Ensure host tools and env tools build'
pool:
vmImage: $(ubuntu_vm)
container:
@@ -135,16 +135,7 @@ stages:
steps:
- script: |
make tools-only_config tools-only -j$(nproc)
-
- - job: envtools
- displayName: 'Ensure env tools build'
- pool:
- vmImage: $(ubuntu_vm)
- container:
- image: $(ci_runner_image)
- options: $(container_option)
- steps:
- - script: |
+ make mrproper
make tools-only_config envtools -j$(nproc)
- job: utils