diff options
author | Christian Heimes <christian@python.org> | 2021-11-24 20:12:12 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-24 20:12:12 (GMT) |
commit | f4afc53bf68c8ded20b281cd1baa88a679b4a3fd (patch) | |
tree | e708685db4f4036fd04e62434549344692745c7e /.github | |
parent | d71c7bc7339eb82de493c66ebbbfa1cad250ac78 (diff) | |
download | cpython-f4afc53bf68c8ded20b281cd1baa88a679b4a3fd.zip cpython-f4afc53bf68c8ded20b281cd1baa88a679b4a3fd.tar.gz cpython-f4afc53bf68c8ded20b281cd1baa88a679b4a3fd.tar.bz2 |
bpo-45893: Add missing extern C to initconfig.h (GH-29761)
Co-authored-by: Steve Dower <steve.dower@python.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a11a368..fe4b148 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -95,6 +95,8 @@ jobs: runs-on: windows-latest needs: check_source if: needs.check_source.outputs.run_tests == 'true' + env: + IncludeUwp: 'true' steps: - uses: actions/checkout@v2 - name: Build CPython @@ -109,6 +111,8 @@ jobs: runs-on: windows-latest needs: check_source if: needs.check_source.outputs.run_tests == 'true' + env: + IncludeUwp: 'true' steps: - uses: actions/checkout@v2 - name: Register MSVC problem matcher |