diff options
author | Łukasz Langa <lukasz@langa.pl> | 2022-02-22 10:06:36 (GMT) |
---|---|---|
committer | Łukasz Langa <lukasz@langa.pl> | 2022-02-22 20:57:53 (GMT) |
commit | 899eb4167264a17ba703677814d69d4f7dcaea41 (patch) | |
tree | 262ad0337cee74aac91a3ee181a0d1eecd31f863 /.github | |
parent | fdfd7a93540b0866ba42264ecb9b0a3c2286f654 (diff) | |
download | cpython-899eb4167264a17ba703677814d69d4f7dcaea41.zip cpython-899eb4167264a17ba703677814d69d4f7dcaea41.tar.gz cpython-899eb4167264a17ba703677814d69d4f7dcaea41.tar.bz2 |
Force use of `windows-2019` on GHA to continue using the v140 platform toolkit
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 29810c4..5ed7870 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -95,7 +95,7 @@ jobs: build_win32: name: 'Windows (x86)' - runs-on: windows-latest + runs-on: windows-2019 needs: check_source if: needs.check_source.outputs.run_tests == 'true' steps: @@ -109,7 +109,7 @@ jobs: build_win_amd64: name: 'Windows (x64)' - runs-on: windows-latest + runs-on: windows-2019 needs: check_source if: needs.check_source.outputs.run_tests == 'true' steps: |