Skip to content

Commit 0f23660

Browse files
authored
fix: msi release tests cleanup (#819)
Issue #, if available: *Description of changes:* - Replace `timeout` with `Start-Sleep` (timeout wasn't working) - Also cleanup the persistent data volume *Testing done:* - [x] I've reviewed the guidance in CONTRIBUTING.md #### License Acceptance By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 license. Signed-off-by: Justin Alvarez <[email protected]>
1 parent a96788b commit 0f23660

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/build-and-test-msi.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,8 +235,9 @@ jobs:
235235
run: |
236236
wsl --list --verbose
237237
wsl --shutdown
238-
timeout 10
238+
Start-Sleep -s 10
239239
wsl --unregister lima-finch
240+
Remove-Item C:\Users\Administrator\AppData\Local\.finch -Recurse
240241
wsl --list --verbose
241242
- name: Run container e2e tests
242243
uses: nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e # v3.0.0

0 commit comments

Comments
 (0)