Skip to content

Commit

Permalink
common: no fail-fast and no Docker rebuild on nightly
Browse files Browse the repository at this point in the history
Signed-off-by: Jan Michalski <jan.michalski@intel.com>
  • Loading branch information
janekmi committed Jul 31, 2023
1 parent 921da0e commit 904ad5c
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ jobs:
name: In-tree
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
CONFIG: [
"OS=ubuntu OS_VER=22.04",
Expand All @@ -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 }}
Expand All @@ -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++",
Expand All @@ -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:
Expand Down

0 comments on commit 904ad5c

Please sign in to comment.