aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2023-08-20 13:31:28 -0400
committerTom Rini <trini@konsulko.com>2023-09-04 11:30:06 -0400
commit77c5020fb6846b4f8e67c8bb7ea43ea67df0b4a6 (patch)
treefd32ca281c18be18d99fef49da314b3ac33caaa4
parentaf8e8fb6a3d3bd954dc9681bfb88d8298b8a9b64 (diff)
downloadu-boot-77c5020fb6846b4f8e67c8bb7ea43ea67df0b4a6.zip
u-boot-77c5020fb6846b4f8e67c8bb7ea43ea67df0b4a6.tar.gz
u-boot-77c5020fb6846b4f8e67c8bb7ea43ea67df0b4a6.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>
-rw-r--r--.azure-pipelines.yml13
-rw-r--r--.gitlab-ci.yml12
2 files changed, 6 insertions, 19 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
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6d7ffdd..51553a1 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -190,16 +190,12 @@ Check for configs without MAINTAINERS entry:
- ./tools/buildman/buildman --maintainer-check || exit 0
# Ensure host tools build
-Build tools-only:
+Build tools-only and envtools:
stage: testsuites
script:
- - make tools-only_config tools-only -j$(nproc)
-
-# Ensure env tools build
-Build envtools:
- stage: testsuites
- script:
- - make tools-only_config envtools -j$(nproc)
+ - make tools-only_config tools-only -j$(nproc);
+ make mrproper;
+ make tools-only_config envtools -j$(nproc)
Run binman, buildman, dtoc, Kconfig and patman testsuites:
stage: testsuites