Skip to content

Commit 0fdcbe4

Browse files
authored
Improved the CI check completion (#40)
1 parent 176c8d7 commit 0fdcbe4

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

.asf.yaml

+1-6
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,7 @@ github:
4949
# # Contexts are the names of checks that must pass.
5050
# # See ./github/workflows/README.md for more documentation on this list.
5151
contexts:
52-
- Run unit tests
53-
- Build CPP Client on Windows x64
54-
- Build CPP Client on Windows x86
55-
- Build Debian Package
56-
- Build RPM Package
57-
- Build Alpine Linux APK Package
52+
- Check Completion
5853

5954
required_pull_request_reviews:
6055
dismiss_stale_reviews: false

.github/workflows/ci-pr-validation.yaml

+10
Original file line numberDiff line numberDiff line change
@@ -264,3 +264,13 @@ jobs:
264264

265265
- name: Build APK packages
266266
run: pkg/apk/docker-build-apk-x86_64.sh build-apk-x86_64:latest
267+
268+
269+
# Job that will be required to complete and depends on all the other jobs
270+
check-completion:
271+
name: Check Completion
272+
runs-on: ubuntu-latest
273+
needs: [unit-tests, cpp-build-windows, deb-packaging, rpm-packaging, apk-packaging]
274+
275+
steps:
276+
- run: true

0 commit comments

Comments
 (0)