You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mynewt.apache.org by na...@apache.org on 2023/01/24 08:45:54 UTC

[mynewt-core] branch master updated: ci: Don't use fail-fast strategy

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

naraj pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git


The following commit(s) were added to refs/heads/master by this push:
     new 16776dfec ci: Don't use fail-fast strategy
16776dfec is described below

commit 16776dfec8d1db4a7feac07de96ec9a91a3f5c90
Author: Szymon Janc <sz...@codecoup.pl>
AuthorDate: Mon Jan 23 22:07:39 2023 +0100

    ci: Don't use fail-fast strategy
    
    We want all jobs to be completed even if some failed.
---
 .github/workflows/build_blinky.yml  | 1 +
 .github/workflows/build_targets.yml | 1 +
 2 files changed, 2 insertions(+)

diff --git a/.github/workflows/build_blinky.yml b/.github/workflows/build_blinky.yml
index 3d09c2e6a..5895154a9 100644
--- a/.github/workflows/build_blinky.yml
+++ b/.github/workflows/build_blinky.yml
@@ -24,6 +24,7 @@ on: [push, pull_request]
 jobs:
   blinky:
     strategy:
+      fail-fast: false
       matrix:
         os: [ubuntu-latest, windows-latest, macos-latest]
     runs-on: ${{ matrix.os }}
diff --git a/.github/workflows/build_targets.yml b/.github/workflows/build_targets.yml
index 7a1870365..181b5919c 100644
--- a/.github/workflows/build_targets.yml
+++ b/.github/workflows/build_targets.yml
@@ -24,6 +24,7 @@ on: [push, pull_request]
 jobs:
   targets:
     strategy:
+      fail-fast: false
       matrix:
         os: [ubuntu-latest, windows-latest, macos-latest]
     runs-on: ${{ matrix.os }}