Staging
v0.5.1
https://github.com/python/cpython
Revision 8a4557240b98c322d611bfbba3ea51eac3fb841a authored by Miss Islington (bot) on 13 November 2020, 22:42:10 UTC, committed by GitHub on 13 November 2020, 22:42:10 UTC
(cherry picked from commit 9b6934230c35e24d8582ea8c58456fa8eab72ae2)

Co-authored-by: Steve Dower <steve.dower@python.org>
1 parent cb2b203
Raw File
Tip revision: 8a4557240b98c322d611bfbba3ea51eac3fb841a authored by Miss Islington (bot) on 13 November 2020, 22:42:10 UTC
bpo-40754: Adds _testinternalcapi to Windows installer for test suite (GH-23271)
Tip revision: 8a45572
build_msi.yml
name: TestsMSI

on:
  push:
    branches:
    - master
    - 3.8
    - 3.7
    paths:
    - 'Tools/msi/**'
    - 'Lib/ensurepip/**'
  pull_request:
    branches:
    - master
    - 3.8
    - 3.7
    paths:
    - 'Tools/msi/**'
    - 'Lib/ensurepip/**'

jobs:
  build_win32:
    name: 'Windows (x86) Installer'
    runs-on: windows-latest
    steps:
    - uses: actions/checkout@v2
    - 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@v2
    - name: Build CPython installer
      run: .\Tools\msi\build.bat -x64
back to top