From 904ad5c96a813d2241e6380dedae39cee91ddb64 Mon Sep 17 00:00:00 2001 From: Jan Michalski Date: Fri, 28 Jul 2023 19:01:29 -0400 Subject: [PATCH] common: no fail-fast and no Docker rebuild on nightly Signed-off-by: Jan Michalski --- .github/workflows/nightly.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 56f87ffddcd..dc846995648 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -24,6 +24,7 @@ jobs: name: In-tree runs-on: ubuntu-latest strategy: + fail-fast: false matrix: CONFIG: [ "OS=ubuntu OS_VER=22.04", @@ -41,8 +42,8 @@ jobs: - name: Get system information run: ./$WORKDIR/get-system-info.sh - - name: Pull or rebuild the image - run: cd $WORKDIR && ${{ matrix.CONFIG }} ./pull-or-rebuild-image.sh rebuild + - name: Pull the image + run: cd $WORKDIR && ${{ matrix.CONFIG }} ./pull-or-rebuild-image.sh - name: Run the build run: cd $WORKDIR && ${{ matrix.CONFIG }} @@ -54,6 +55,7 @@ jobs: needs: in-tree runs-on: ubuntu-latest strategy: + fail-fast: false matrix: CONFIG: [ "OS=ubuntu OS_VER=22.04 PMDK_CC=clang PMDK_CXX=clang++", @@ -71,8 +73,8 @@ jobs: - name: Get system information run: ./$WORKDIR/get-system-info.sh - - name: Pull or rebuild the image - run: cd $WORKDIR && ${{ matrix.CONFIG }} ./pull-or-rebuild-image.sh rebuild + - name: Pull the image + run: cd $WORKDIR && ${{ matrix.CONFIG }} ./pull-or-rebuild-image.sh - name: Run the build env: