Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: dfa645a65ec0788d98851130a217e029d1cc4e9b authored by Ɓukasz Langa on 13 July 2020, 12:11:53 UTC
Python 3.8.4
Tip revision: dfa645a
build_msi.yml
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@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