From 9ab02f04e1c8d37cac6db730cb9a085f445a219c Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 5 Feb 2022 21:48:41 +0900 Subject: [PATCH] CI: Test with Windows Server 2019 In nearly days, `windows-latest` image on GHA was changed to Windows Server 2022. That causes build errors on building a cython script. To avoid the problem, this pins the image for testing on GHA to Windows Server 2019. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d9a21f501..c83127703 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -60,7 +60,7 @@ jobs: if: matrix.coverage windows: - runs-on: windows-latest + runs-on: windows-2019 strategy: matrix: architecture: [x86, x64]