Skip to content

Commit 8ff6c18

Browse files
committed
simplify GHA required build settings
by adding a single `build-results` job which depends on all other jobs we can simplify the setting of required builds in the repository. currently, all builds - including all variations of the build matrix! - need to be manually specified. once this has been merged the settings can be changed to require only this one job (which will fail if any of the other jobs failed). this way it's also easier to add/remove jobs or change the build matrix as it no longer requires changing the settings on the repository. this is inspired by [this discussion on GH][discussion]. [discussion]: https://github.com/orgs/community/discussions/26822
1 parent b383c5d commit 8ff6c18

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/CI.yml

+17
Original file line numberDiff line numberDiff line change
@@ -92,3 +92,20 @@ jobs:
9292
with:
9393
sarif_file: rust-clippy-results.sarif
9494
wait-for-processing: true
95+
96+
# simplify GH settings: have one single build to be required
97+
build-results:
98+
name: Final Results
99+
if: ${{ always() }}
100+
runs-on: ubuntu-latest
101+
needs: [lib, stm32f4-single-motor-example, clippy]
102+
steps:
103+
- name: check for failed builds of the library
104+
if: ${{ needs.lib.result != 'success' }}
105+
run: exit 1
106+
- name: check for failed builds of the example
107+
if: ${{ needs.stm32f4-single-motor-example.result != 'success' }}
108+
run: exit 1
109+
- name: check for failed clippy builds
110+
if: ${{ needs.clippy.result != 'success' }}
111+
run: exit 1

0 commit comments

Comments
 (0)