Skip to content

Commit 1374cfa

Browse files
committed
workflows: pin Windows tests to windows-2019
On Windows Server 2022, one test is crashing on a breakpoint exception. We're testing with binaries from 2017, so this isn't worth debugging right now. Pin to Windows Server 2019 to get the tests working again. Also re-enable fail-fast, which was disabled in bc6a38b.
1 parent 4ccf3ae commit 1374cfa

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/python.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,17 @@ jobs:
5757
windows:
5858
name: Windows
5959
needs: pre-commit
60-
runs-on: windows-latest
60+
# test_read_bad_associated_image crashes with "Windows fatal exception:
61+
# code 0x80000003" on 64-bit windows-2022. It probably doesn't help
62+
# that we're using an OpenSlide and library stack from 2017, compiled
63+
# with a 2017 compiler. Pin to windows-2019 for now.
64+
runs-on: windows-2019
6165
env:
6266
WINBUILD_RELEASE: 20171122
6367
defaults:
6468
run:
6569
shell: bash
6670
strategy:
67-
fail-fast: false
6871
matrix:
6972
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
7073
python-arch: [x86, x64]

0 commit comments

Comments
 (0)