Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
11 changes: 11 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,3 +66,14 @@ jobs:
export -f check_repo

parallel -j4 check_repo ::: circe/circe indeedeng/iwf-java-sdk

ci-pass:
if: always()
needs: [format, kotlin_plugin, docker_test]
runs-on: ubuntu-latest
name: CI pass
steps:
- if: >-
contains(needs.*.result, 'failure') ||
contains(needs.*.result, 'cancelled')
run: exit 1
12 changes: 12 additions & 0 deletions .github/workflows/nix.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -168,3 +168,15 @@ jobs:

- run: du -h index.scip
working-directory: examples/maven-example

nix-pass:
if: always()
needs: [flake-check, test, bazel, bazel_aspect, snapshots, maven]
runs-on: ubuntu-latest
name: Nix pass
steps:
- if: >-
contains(needs.*.result, 'failure') ||
contains(needs.*.result, 'cancelled')
shell: bash
run: exit 1
12 changes: 12 additions & 0 deletions .github/workflows/repos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -271,3 +271,15 @@ jobs:
fi
exit 1
fi

repos-pass:
if: always()
needs: [build-cli, index-repo]
runs-on: ubuntu-latest
name: Repository indexing pass
steps:
- if: >-
contains(needs.*.result, 'failure') ||
contains(needs.*.result, 'cancelled')
shell: bash
run: exit 1
Loading