mirror of
https://github.com/python/cpython.git
synced 2025-12-23 09:19:18 +00:00
bpo-39930: Ensure vcruntime140.dll is included in all Windows packages (GH-18918)
Also adds GitHub CI test for Windows installer changes
This commit is contained in:
parent
39c34933fc
commit
2dd41740c9
6 changed files with 67 additions and 10 deletions
34
.github/workflows/build_msi.yml
vendored
Normal file
34
.github/workflows/build_msi.yml
vendored
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
name: TestsMSI
|
||||
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
- 3.8
|
||||
- 3.7
|
||||
paths:
|
||||
- 'Tools/msi/**'
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
- 3.8
|
||||
- 3.7
|
||||
paths:
|
||||
- 'Tools/msi/**'
|
||||
|
||||
jobs:
|
||||
build_win32:
|
||||
name: 'Windows (x86) Installer'
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Build CPython installer
|
||||
run: .\Tools\msi\build.bat -x86
|
||||
|
||||
build_win_amd64:
|
||||
name: 'Windows (x64) Installer'
|
||||
runs-on: windows-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Build CPython installer
|
||||
run: .\Tools\msi\build.bat -x64
|
||||
Loading…
Add table
Add a link
Reference in a new issue