mirror of
https://github.com/astral-sh/uv
synced 2026-01-23 06:20:12 -05:00
Only run macOS tests on main without opt-in (#14541)
These runners are expensive and have limited concurrency, let's just run them on `main`.
This commit is contained in:
3
.github/workflows/ci.yml
vendored
3
.github/workflows/ci.yml
vendored
@@ -232,7 +232,8 @@ jobs:
|
||||
cargo-test-macos:
|
||||
timeout-minutes: 15
|
||||
needs: determine_changes
|
||||
if: ${{ !contains(github.event.pull_request.labels.*.name, 'no-test') && (needs.determine_changes.outputs.code == 'true' || github.ref == 'refs/heads/main') }}
|
||||
# Only run macOS tests on main without opt-in
|
||||
if: ${{ contains(github.event.pull_request.labels.*.name, 'test:macos' || github.ref == 'refs/heads/main') }}
|
||||
runs-on: macos-latest-xlarge # github-macos-14-aarch64-6
|
||||
name: "cargo test | macos"
|
||||
steps:
|
||||
|
||||
Reference in New Issue
Block a user