You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by bt...@apache.org on 2020/09/13 17:30:14 UTC

[incubator-nuttx-apps] branch master updated: Remove -x from cibuild.sh call in CI since this will abort the build on first error and we do not want that.

This is an automated email from the ASF dual-hosted git repository.

btashton pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx-apps.git


The following commit(s) were added to refs/heads/master by this push:
     new 282e565  Remove -x from cibuild.sh call in CI since this will abort the build on first error and we do not want that.
282e565 is described below

commit 282e56567673323d545fc837ad6683d1a9e0884d
Author: Matias N <ma...@protobits.dev>
AuthorDate: Sun Sep 13 13:58:38 2020 -0300

    Remove -x from cibuild.sh call in CI since this will abort the build
    on first error and we do not want that.
---
 .github/workflows/build.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index f042624..c68159b 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -162,7 +162,7 @@ jobs:
         with:
           run: |
             cd sources/testing
-            ./cibuild.sh -x testlist/${{matrix.boards}}.dat
+            ./cibuild.sh testlist/${{matrix.boards}}.dat
 
   macOS:
     runs-on: macos-10.15
@@ -202,4 +202,4 @@ jobs:
       - name: Run Builds
         run: |
           cd sources/testing
-          ./cibuild.sh -i -x testlist/${{matrix.boards}}.dat
+          ./cibuild.sh -i testlist/${{matrix.boards}}.dat