Skip to content

Commit

Permalink
Merge pull request #5834 from pmem/nightly-tweak
Browse files Browse the repository at this point in the history
common: no fail-fast and no Docker rebuild on nightly
  • Loading branch information
janekmi committed Jul 31, 2023
2 parents 921da0e + 904ad5c commit f87613a
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 f87613a

Please sign in to comment.