diff options
author | Pierre-Jean Texier <pjtexier@koncepto.io> | 2019-08-26 13:06:18 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-09-24 17:46:13 -0400 |
commit | 1f3910da6ef6ddb71f02f0ef181a520360380c76 (patch) | |
tree | 84d11f71c46e4d125ce59e8a5df5d9954ff72366 /.gitlab-ci.yml | |
parent | 664689f1dcb178ccb36842d0564ea8a6e8a7e648 (diff) | |
download | u-boot-1f3910da6ef6ddb71f02f0ef181a520360380c76.tar.gz |
ci: add envtools supportWIP/24Sep2019
This commit add envtools suppport to CI to verify if there
is no build issues.
Signed-off-by: Pierre-Jean Texier <pjtexier@koncepto.io>
Acked-by: Heiko Schocher <hs@denx.de>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 84e79bf032..a1c5b4fc76 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -145,6 +145,13 @@ Build tools-only: script: - make tools-only_config tools-only -j$(nproc) +# Ensure env tools build +Build envtools: + tags: [ 'all' ] + stage: testsuites + script: + - make tools-only_config envtools -j$(nproc) + Run binman, buildman, dtoc and patman testsuites: tags: [ 'all' ] stage: testsuites |