Skip to content
Open
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
6 changes: 5 additions & 1 deletion .github/workflows/build_and_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,11 @@ jobs:
# To test all models, replace this with: $modelsToTest = $modelMap.Keys
$modelsToTest = @("stable-diffusion-turbo-amdnpu-onnx")

$modelsDir = "${{ github.workspace }}/test_models"
# Use a short absolute path so that huggingface_hub's temp download
# files ({local_dir}/.cache/huggingface/download/…/<hash>.incomplete)
# stay within Windows' 260-character MAX_PATH limit regardless of
# whether the runner has admin rights to enable long-path support.
$modelsDir = "C:\m"
$logDir = "${{ github.workspace }}/test_logs"
$failed = @()

Expand Down
Loading