From 282e56567673323d545fc837ad6683d1a9e0884d Mon Sep 17 00:00:00 2001 From: Matias N Date: Sun, 13 Sep 2020 13:58:38 -0300 Subject: [PATCH] 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 f04262435..c68159b76 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