From: Pierre-Jean Texier Date: Mon, 26 Aug 2019 11:06:18 +0000 (+0200) Subject: ci: add envtools support X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=1f3910da6ef6ddb71f02f0ef181a520360380c76;p=u-boot.git ci: add envtools support This commit add envtools suppport to CI to verify if there is no build issues. Signed-off-by: Pierre-Jean Texier Acked-by: Heiko Schocher Reviewed-by: Simon Glass --- 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 diff --git a/.travis.yml b/.travis.yml index 59d2e97fe0..0ce09e35b7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -361,6 +361,10 @@ matrix: - name: "Build tools-only" script: - make tools-only_config tools-only -j$(nproc) + # Ensure env tools build + - name: "Build envtools" + script: + - make tools-only_config envtools -j$(nproc) # test/py - name: "test/py sandbox"