Skip to content

Commit

Permalink
prepare-incremental-build: don't fail
Browse files Browse the repository at this point in the history
Print a message and return 0 exit code, even if a script failed.

prepare-incremental-build action is meant to speed up the build, and should not fail a job in case of failure.
  • Loading branch information
theihor authored Nov 26, 2024
1 parent df8e00b commit 796183c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prepare-incremental-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@ runs:
env:
KBUILD_OUTPUT: ${{ inputs.kbuild-output }}
shell: bash
run: ${GITHUB_ACTION_PATH}/prepare-incremental-builds.sh ${{ steps.get-commit-metadata.outputs.commit }}
run: ${GITHUB_ACTION_PATH}/prepare-incremental-builds.sh ${{ steps.get-commit-metadata.outputs.commit }} || echo "Prepare incremental build script failed! Continue anyway..."

0 comments on commit 796183c

Please sign in to comment.