We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fc509e commit 442869eCopy full SHA for 442869e
1 file changed
.github/workflows/test.yml
@@ -126,7 +126,13 @@ jobs:
126
spice init spice_qs
127
cd spice_qs
128
spice add spiceai/quickstart
129
- Start-Process -FilePath spice -ArgumentList 'run' -RedirectStandardOutput spice.out.log -RedirectStandardError spice.err.log
+ # Use spiced directly; `spice run` on Windows has a bug where it
130
+ # reinstalls the runtime and then fails to locate it.
131
+ $spiced = Join-Path $HOME ".spice\bin\spiced.exe"
132
+ if (-not (Test-Path $spiced)) {
133
+ throw "spiced not found at $spiced after `spice install`"
134
+ }
135
+ Start-Process -FilePath $spiced -RedirectStandardOutput spice.out.log -RedirectStandardError spice.err.log
136
# Wait for runtime to be ready (poll /v1/ready endpoint)
137
$timeout = 120
138
$elapsed = 0
0 commit comments