Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Mind set -e in github actions scripts
  • Loading branch information
sterliakov committed Oct 25, 2022
commit cc29c8d7e1d3df7a263223dc2ba9ec1b3452a175
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,7 @@ jobs:
make -j4
- name: Check for changes in the ABI
run: |
make check-abidump
if [ $? -ne 0 ] ; then
if ! make check-abidump; then
echo "Generated ABI file is not up to date."
echo "Please, add the release manager of this branch as a reviewer of this PR."
echo ""
Expand Down