diff mbox series

[U-Boot,v2,4/4] ci: add envtools support

Message ID 1566817578-16750-5-git-send-email-pjtexier@koncepto.io
State Accepted
Commit 1f3910da6ef6ddb71f02f0ef181a520360380c76
Delegated to: Tom Rini
Headers show
Series env: fix build error for envtools | expand

Commit Message

Pierre-Jean Texier Aug. 26, 2019, 11:06 a.m. UTC
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>
---
v1 -> v2:
 - None

 .gitlab-ci.yml | 7 +++++++
 .travis.yml    | 4 ++++
 2 files changed, 11 insertions(+)

Comments

Simon Glass Sept. 17, 2019, 5:47 a.m. UTC | #1
On Mon, 26 Aug 2019 at 05:06, Pierre-Jean Texier <pjtexier@koncepto.io> wrote:
>
> 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>
> ---
> v1 -> v2:
>  - None
>
>  .gitlab-ci.yml | 7 +++++++
>  .travis.yml    | 4 ++++
>  2 files changed, 11 insertions(+)

Reviewed-by: Simon Glass <sjg@chromium.org>
Tom Rini Sept. 25, 2019, 11:39 p.m. UTC | #2
On Mon, Aug 26, 2019 at 01:06:18PM +0200, Pierre-Jean Texier wrote:

> 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>

Applied to u-boot/master, thanks!
diff mbox series

Patch

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 84e79bf..a1c5b4f 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 d330dda..6adc754 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"