From 95e51c1dbe85f43d30b212a00c7e28f43d6648c1 Mon Sep 17 00:00:00 2001 From: Andrii Nakryiko Date: Fri, 18 Jun 2021 11:32:46 -0700 Subject: [PATCH] ci: disable fail-fast for Github Actions tests Make sure we run all of the tests even if some of them fail. This allows to test all of them independently, especially kernel LATEST slow test. Signed-off-by: Andrii Nakryiko --- .github/workflows/test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 8a0f28f..ec26e93 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,6 +12,7 @@ jobs: runs-on: ubuntu-latest name: Kernel ${{ matrix.kernel }} + selftests strategy: + fail-fast: false matrix: include: - kernel: 'LATEST' @@ -28,6 +29,7 @@ jobs: runs-on: ubuntu-latest name: Debian Build (${{ matrix.name }}) strategy: + fail-fast: false matrix: include: - name: default @@ -53,6 +55,7 @@ jobs: runs-on: ubuntu-latest name: Ubuntu Focal Build (${{ matrix.arch }}) strategy: + fail-fast: false matrix: include: - arch: aarch64