Skip to content

Commit

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

prepare-incremental-build action is meant to speed up the build, and should not fail a job in case of an error.
  • Loading branch information
theihor authored Nov 26, 2024
1 parent bb321a8 commit 8d536a7
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 8d536a7

Please sign in to comment.