From 927ed09c57afcb8b88824edfc0165eb8e56531c1 Mon Sep 17 00:00:00 2001 From: Jover Lee Date: Tue, 7 Apr 2026 12:15:38 -0700 Subject: [PATCH] run-integration-test: workaround docker in windows Add suggested workaround from GitHub team for Docker issue in Windows runners Resolves https://github.com/nextstrain/cli/issues/519 --- .github/actions/run-integration-tests/action.yaml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.github/actions/run-integration-tests/action.yaml b/.github/actions/run-integration-tests/action.yaml index 78f46f67..203c5766 100644 --- a/.github/actions/run-integration-tests/action.yaml +++ b/.github/actions/run-integration-tests/action.yaml @@ -17,6 +17,16 @@ inputs: runs: using: composite steps: + # Workaround for Docker issue in windows runner + # See + - if: runner.os == 'Windows' + shell: pwsh + run: | + $dockerState = Get-Service -Name "docker" + if ($dockerState.Status -ne "Running") { + Start-Service -Name "docker" + } + - shell: bash -l -eo pipefail {0} run: nextstrain version --verbose