diff options
author | alexv-smirnov <alex@ydb.tech> | 2023-03-11 14:55:50 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2023-03-11 14:55:50 +0300 |
commit | 21b5551c3aee31de7abfb1c8a7a890f5ce124c62 (patch) | |
tree | 59017108e398013c0ca59ca0df81b3d8d11524d7 | |
parent | 836badeb1d0da3c2cbe75cee3db353fb18b6e688 (diff) | |
download | ydb-21b5551c3aee31de7abfb1c8a7a890f5ce124c62.tar.gz |
OSS CI: avoid cancelling all builds in matrix when one build fails
-rw-r--r-- | .github/workflows/build_and_test.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/build_and_test.yml b/.github/workflows/build_and_test.yml index e053d4cb737..c842d71e798 100644 --- a/.github/workflows/build_and_test.yml +++ b/.github/workflows/build_and_test.yml @@ -10,6 +10,7 @@ jobs: strategy: matrix: arch: [ X64, ARM64 ] + fail-fast: false runs-on: [ self-hosted, "${{matrix.arch}}" ] |