| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 1d4d677 commit b436563
1 file changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -117,6 +117,7 @@ jobs: | |||
| 117 | 117 | runs-on: windows-latest | |
| 118 | 118 | needs: check_source | |
| 119 | 119 | if: needs.check_source.outputs.run_tests == 'true' | |
| 120 | + continue-on-error: true | ||
| 120 | 121 | env: | |
| 121 | 122 | IncludeUwp: 'true' | |
| 122 | 123 | steps: | |
@@ -153,6 +154,7 @@ jobs: | |||
| 153 | 154 | runs-on: macos-latest | |
| 154 | 155 | needs: check_source | |
| 155 | 156 | if: needs.check_source.outputs.run_tests == 'true' | |
| 157 | + continue-on-error: true | ||
| 156 | 158 | env: | |
| 157 | 159 | PYTHONSTRICTEXTENSIONBUILD: 1 | |
| 158 | 160 | steps: | |
@@ -232,6 +234,7 @@ jobs: | |||
| 232 | 234 | runs-on: ubuntu-20.04 | |
| 233 | 235 | needs: check_source | |
| 234 | 236 | if: needs.check_source.outputs.run_tests == 'true' | |
| 237 | + continue-on-error: true | ||
| 235 | 238 | strategy: | |
| 236 | 239 | fail-fast: false | |
| 237 | 240 | matrix: | |
@@ -318,3 +321,38 @@ jobs: | |||
| 318 | 321 | run: make pythoninfo | |
| 319 | 322 | - name: Tests | |
| 320 | 323 | run: xvfb-run make buildbottest TESTOPTS="-j4 -uall,-cpu" | |
| 324 | + | ||
| 325 | + check: # This job does nothing and is only used for the branch protection | ||
| 326 | + if: always() | ||
| 327 | + | ||
| 328 | + needs: | ||
| 329 | + - check_source # Transitive dependency, needed to access `run_tests` value | ||
| 330 | + - check_generated_files | ||
| 331 | + - build_win32 | ||
| 332 | + - build_win_amd64 | ||
| 333 | + - build_macos | ||
| 334 | + - build_ubuntu | ||
| 335 | + - build_ubuntu_ssltests | ||
| 336 | + - build_asan | ||
| 337 | + | ||
| 338 | + runs-on: ubuntu-latest | ||
| 339 | + | ||
| 340 | + steps: | ||
| 341 | + - name: Decide whether the needed jobs succeeded or failed | ||
| 342 | + uses: re-actors/alls-green@13b4244b312e8a314951e03958a2f91519a6a3c9 | ||
| 343 | + with: | ||
| 344 | + allowed-skips: >- | ||
| 345 | + ${{ | ||
| 346 | + needs.check_source.outputs.run_tests == 'true' | ||
| 347 | + && ' | ||
| 348 | + check_generated_files, | ||
| 349 | + build_win32, | ||
| 350 | + build_win_amd64, | ||
| 351 | + build_macos, | ||
| 352 | + build_ubuntu, | ||
| 353 | + build_ubuntu_ssltests, | ||
| 354 | + build_asan, | ||
| 355 | + ' | ||
| 356 | + || '' | ||
| 357 | + }} | ||
| 358 | + jobs: ${{ toJSON(needs) }} | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments