Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/test-desktop-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
required: true
type: string
platforms:
description: 'JSON array of runner labels (e.g., ["ubuntu-latest"] or ["ai-run-linux-gpu", "mac-mini-m4-gpu"])'
description: 'JSON array of runner labels (e.g., ["ubuntu-latest"] or ["qvac-ubuntu2204-x64-gpu", "mac-mini-m4-gpu"])'
required: true
type: string
consumer-timeout:
Expand Down Expand Up @@ -272,6 +272,7 @@ jobs:
with:
path: ${{ inputs.working-directory }}/.qvac-cache
key: qvac-models-${{ hashFiles('packages/sdk/models/registry/models.ts') }}
enableCrossOsArchive: true

- name: Bootstrap (download models)
if: steps.models-cache.outputs.cache-hit != 'true'
Expand All @@ -286,6 +287,7 @@ jobs:
with:
path: ${{ inputs.working-directory }}/.qvac-cache
key: qvac-models-${{ hashFiles('packages/sdk/models/registry/models.ts') }}
enableCrossOsArchive: true

- name: Generate runId
id: runid
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ on:
desktop-platforms:
description: "JSON array of runner labels for desktop tests"
type: string
default: '["ai-run-windows11-gpu", "ai-run-linux-gpu", "mac-mini-m4-gpu"]'
default: '["qvac-win25-x64-gpu", "qvac-ubuntu2204-x64-gpu", "mac-mini-m4-gpu"]'
test-version:
description: "Git ref to checkout for the tested project (branch, tag, or SHA). Defaults to current branch HEAD."
type: string
Expand Down Expand Up @@ -87,7 +87,7 @@ on:
default: 90
desktop-platforms:
type: string
default: '["ai-run-windows11-gpu", "ai-run-linux-gpu", "mac-mini-m4-gpu"]'
default: '["qvac-win25-x64-gpu", "qvac-ubuntu2204-x64-gpu", "mac-mini-m4-gpu"]'
test-version:
type: string
cache-models:
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
with:
project-directory: "packages/sdk"
working-directory: "packages/sdk/tests-qvac"
platforms: ${{ inputs.desktop-platforms || '["ai-run-windows11-gpu", "ai-run-linux-gpu", "mac-mini-m4-gpu"]' }}
platforms: ${{ inputs.desktop-platforms || '["qvac-win25-x64-gpu", "qvac-ubuntu2204-x64-gpu", "mac-mini-m4-gpu"]' }}
consumer-timeout: ${{ fromJSON(inputs.desktop-consumer-timeout || '60') }}
filter: ${{ inputs.filter }}
suite: ${{ needs.resolve.outputs.suite }}
Expand Down
Loading