File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -284,7 +284,7 @@ jobs:
284284 powershell -NoLogo -NoProfile -ExecutionPolicy Bypass -NoExit -File C:\Scripts\startup-docker.ps1
285285
286286 smoke-tests :
287- name : Build Smoke
287+ name : smoke-windows
288288 needs : build-windows
289289 runs-on : windows-2022
290290 strategy :
@@ -307,7 +307,9 @@ jobs:
307307
308308 - name : Unpack Nabla install artifact
309309 run : |
310- tar -xf smoke\*-install.tar -C smoke
310+ $tar = Get-ChildItem smoke -Filter *-install.tar -File | Select-Object -First 1
311+ if (-not $tar) { throw "install tar not found in smoke" }
312+ tar -xf $tar.FullName -C smoke
311313 if (-not (Test-Path "smoke/build-ct/install")) { throw "smoke/build-ct/install not found" }
312314 tree.com smoke /F
313315
You can’t perform that action at this time.
0 commit comments