ci: add envtools support
authorPierre-Jean Texier <pjtexier@koncepto.io>
Mon, 26 Aug 2019 11:06:18 +0000 (13:06 +0200)
committerTom Rini <trini@konsulko.com>
Tue, 24 Sep 2019 21:46:13 +0000 (17:46 -0400)
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>
.gitlab-ci.yml
.travis.yml

index 84e79bf03218e752f0b1fd95423a0325c518fca3..a1c5b4fc766fedb574a83355a1fc72552c8c82d5 100644 (file)
@@ -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
index 59d2e97fe0c3fb71dd88c3fa1af0265ae28e8d27..0ce09e35b7c6a14aaa36e5acb31ef540e687c8ea 100644 (file)
@@ -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"