Add all-tests-passed

We can configure branch protection rules to only depend on this job.
This way we can keeo adding new jobs without needing to adjust the branch protection rules.
This commit is contained in:
Kevin Stillhammer 2025-03-18 19:39:51 +01:00
parent 48ec7510f9
commit 5b36bd7cc1
No known key found for this signature in database

View file

@ -440,6 +440,7 @@ jobs:
needs:
- test-tilde-expansion-cache-local-path
- test-tilde-expansion-cache-dependency-glob
if: always()
runs-on: selfhosted-ubuntu-arm64
steps:
- name: Remove cache directory
@ -461,3 +462,35 @@ jobs:
enable-cache: true
- run: uv sync
working-directory: __tests__/fixtures/old-python-constraint-project
all-tests-passed:
runs-on: ubuntu-latest
needs:
- lint
- test-default-version
- test-specific-version
- test-semver-range
- test-pyproject-file-version
- test-malformed-pyproject-file-fallback
- test-uv-file-version
- test-checksum
- test-with-explicit-token
- test-uvx
- test-tool-install
- test-tilde-expansion-tool-dirs
- test-python-version
- test-musl
- test-restore-cache
- test-restore-cache-requirements-txt
- test-restore-cache-dependency-glob
- test-restore-cache-local
- test-tilde-expansion-cache-local-path
- test-tilde-expansion-cache-dependency-glob
- cleanup-tilde-expansion-tests
- test-no-python-version
if: always()
steps:
- name: All tests passed
run: |
echo "All jobs passed: ${{ !contains(needs.*.result, 'failure') }}"
exit ${{ contains(needs.*.result, 'failure') && 1 || 0 }}