a7d5bc907b
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://redirect.github.com/actions/checkout) | action | patch | `v6.0.1` → `v6.0.2` | --- ### Release Notes <details> <summary>actions/checkout (actions/checkout)</summary> ### [`v6.0.2`](https://redirect.github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v602) [Compare Source](https://redirect.github.com/actions/checkout/compare/v6.0.1...v6.0.2) - Fix tag handling: preserve annotations and explicit fetch-tags by [@​ericsciple](https://redirect.github.com/ericsciple) in [#​2356](https://redirect.github.com/actions/checkout/pull/2356) </details> --- ### Configuration 📅 **Schedule**: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/astral-sh/uv). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0Mi45Mi4xIiwidXBkYXRlZEluVmVyIjoiNDIuOTIuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYnVpbGQ6c2tpcC1yZWxlYXNlIiwiaW50ZXJuYWwiXX0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
183 lines
5.1 KiB
YAML
183 lines
5.1 KiB
YAML
on:
|
|
workflow_call:
|
|
inputs:
|
|
sha:
|
|
description: "The commit SHA to use for artifact names"
|
|
required: true
|
|
type: string
|
|
|
|
permissions: {}
|
|
|
|
env:
|
|
CARGO_INCREMENTAL: 0
|
|
CARGO_NET_RETRY: 10
|
|
CARGO_TERM_COLOR: always
|
|
RUSTUP_MAX_RETRIES: 10
|
|
|
|
jobs:
|
|
smoke-test-linux:
|
|
name: "linux"
|
|
timeout-minutes: 10
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: "Download binary"
|
|
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
|
|
with:
|
|
name: uv-linux-libc-${{ inputs.sha }}
|
|
|
|
- name: "Prepare binary"
|
|
run: |
|
|
chmod +x ./uv
|
|
chmod +x ./uvx
|
|
|
|
- name: "Smoke test"
|
|
run: |
|
|
./uv run scripts/smoke-test
|
|
|
|
- name: "Test shell completions"
|
|
run: |
|
|
eval "$(./uv generate-shell-completion bash)"
|
|
eval "$(./uvx --generate-shell-completion bash)"
|
|
|
|
smoke-test-linux-aarch64:
|
|
name: "linux aarch64"
|
|
timeout-minutes: 10
|
|
runs-on: github-ubuntu-24.04-aarch64-2
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: "Download binary"
|
|
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
|
|
with:
|
|
name: uv-linux-aarch64-${{ inputs.sha }}
|
|
|
|
- name: "Prepare binary"
|
|
run: |
|
|
chmod +x ./uv
|
|
chmod +x ./uvx
|
|
|
|
- name: "Smoke test"
|
|
run: |
|
|
./uv run scripts/smoke-test
|
|
|
|
- name: "Test shell completions"
|
|
run: |
|
|
eval "$(./uv generate-shell-completion bash)"
|
|
eval "$(./uvx --generate-shell-completion bash)"
|
|
|
|
smoke-test-linux-musl:
|
|
name: "linux musl"
|
|
timeout-minutes: 10
|
|
runs-on: ubuntu-latest
|
|
container: alpine:latest
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: "Download binary"
|
|
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
|
|
with:
|
|
name: uv-linux-musl-${{ inputs.sha }}
|
|
|
|
- name: "Prepare binary"
|
|
run: |
|
|
chmod +x ./uv
|
|
chmod +x ./uvx
|
|
|
|
- name: "Smoke test"
|
|
run: |
|
|
./uv run scripts/smoke-test
|
|
|
|
smoke-test-macos:
|
|
name: "macos"
|
|
timeout-minutes: 10
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: "Download binary"
|
|
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
|
|
with:
|
|
name: uv-macos-x86_64-${{ inputs.sha }}
|
|
|
|
- name: "Prepare binary"
|
|
run: |
|
|
chmod +x ./uv
|
|
chmod +x ./uvx
|
|
|
|
- name: "Smoke test"
|
|
run: |
|
|
./uv run scripts/smoke-test
|
|
|
|
- name: "Test shell completions"
|
|
run: |
|
|
eval "$(./uv generate-shell-completion bash)"
|
|
eval "$(./uvx --generate-shell-completion bash)"
|
|
|
|
smoke-test-windows-x86_64:
|
|
name: "windows x86_64"
|
|
timeout-minutes: 10
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: "Download binary"
|
|
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
|
|
with:
|
|
name: uv-windows-x86_64-${{ inputs.sha }}
|
|
|
|
- name: "Smoke test"
|
|
working-directory: ${{ env.UV_WORKSPACE }}
|
|
run: |
|
|
./uv run scripts/smoke-test
|
|
|
|
- name: "Test uv shell completions"
|
|
working-directory: ${{ env.UV_WORKSPACE }}
|
|
run: |
|
|
(& ./uv generate-shell-completion powershell) | Out-String | Invoke-Expression
|
|
|
|
- name: "Test uvx shell completions"
|
|
working-directory: ${{ env.UV_WORKSPACE }}
|
|
run: |
|
|
(& ./uvx --generate-shell-completion powershell) | Out-String | Invoke-Expression
|
|
|
|
smoke-test-windows-aarch64:
|
|
name: "windows aarch64"
|
|
timeout-minutes: 10
|
|
runs-on: windows-11-arm
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: "Download binary"
|
|
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
|
|
with:
|
|
name: uv-windows-aarch64-${{ inputs.sha }}
|
|
|
|
- name: "Smoke test"
|
|
working-directory: ${{ env.UV_WORKSPACE }}
|
|
run: |
|
|
./uv run scripts/smoke-test
|
|
|
|
- name: "Test uv shell completions"
|
|
working-directory: ${{ env.UV_WORKSPACE }}
|
|
run: |
|
|
(& ./uv generate-shell-completion powershell) | Out-String | Invoke-Expression
|
|
|
|
- name: "Test uvx shell completions"
|
|
working-directory: ${{ env.UV_WORKSPACE }}
|
|
run: |
|
|
(& ./uvx --generate-shell-completion powershell) | Out-String | Invoke-Expression
|