diff options
author | Keith Rothman <537074+litghost@users.noreply.github.com> | 2021-04-05 10:10:11 -0700 |
---|---|---|
committer | Keith Rothman <537074+litghost@users.noreply.github.com> | 2021-04-06 10:42:05 -0700 |
commit | c43ad2fab6b35a4b9748ce4bb8807a8fe5205b0d (patch) | |
tree | e0cef58ce78659ddea7220457fc2152a021521da /.github/workflows/interchange_ci.yml | |
parent | 3200026e1f3b305d0d2e0d680eb9df94b9b326b8 (diff) | |
download | nextpnr-c43ad2fab6b35a4b9748ce4bb8807a8fe5205b0d.tar.gz nextpnr-c43ad2fab6b35a4b9748ce4bb8807a8fe5205b0d.tar.bz2 nextpnr-c43ad2fab6b35a4b9748ce4bb8807a8fe5205b0d.zip |
Don't fail-fast for GH actions to allow for easier CI debugging.
Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com>
Diffstat (limited to '.github/workflows/interchange_ci.yml')
-rw-r--r-- | .github/workflows/interchange_ci.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.github/workflows/interchange_ci.yml b/.github/workflows/interchange_ci.yml index e72d7378..4c451c30 100644 --- a/.github/workflows/interchange_ci.yml +++ b/.github/workflows/interchange_ci.yml @@ -66,6 +66,9 @@ jobs: runs-on: ubuntu-latest needs: [Build-yosys, Build-nextpnr] strategy: + # Don't terminate jobs when one fails. This is important when + # debugging CI failures. + fail-fast: false matrix: device: [xc7a35t, xc7a100t, xc7a200t, xc7z010, LIFCL-17] steps: |