Skip to content

Commit

Permalink
infra: ci end check (langchain-ai#17986)
Browse files Browse the repository at this point in the history
  • Loading branch information
efriis authored and al1p-R committed Feb 27, 2024
1 parent eb1fd59 commit 5d54c6d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/_all_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,3 +108,19 @@ jobs:
# grep will exit non-zero if the target message isn't found,
# and `set -e` above will cause the step to fail.
echo "$STATUS" | grep 'nothing to commit, working tree clean'
ci_end:
name: "CI Success"
needs: [lint, test, compile-integration-tests, dependencies, extended-tests]
if: ${{ always() }}
runs-on: ubuntu-latest
steps:
- name: "CI Success"
if: ${{ !failure() }}
run: |
echo "Success"
exit 0
- name: "CI Failure"
if: ${{ failure() }}
run: |
echo "Failure"
exit 1

0 comments on commit 5d54c6d

Please sign in to comment.