mirror of
https://github.com/python/cpython.git
synced 2026-01-06 15:32:22 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
47 lines
890 B
YAML
47 lines
890 B
YAML
name: TestsMSI
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
- '3.10'
|
|
- '3.9'
|
|
- '3.8'
|
|
- '3.7'
|
|
paths:
|
|
- 'Tools/msi/**'
|
|
pull_request:
|
|
branches:
|
|
- 'main'
|
|
- '3.10'
|
|
- '3.9'
|
|
- '3.8'
|
|
- '3.7'
|
|
paths:
|
|
- 'Tools/msi/**'
|
|
|
|
jobs:
|
|
build_win32:
|
|
name: 'Windows (x86) Installer'
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- 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@v3
|
|
- name: Build CPython installer
|
|
run: .\Tools\msi\build.bat -x64
|
|
|
|
build_win_arm64:
|
|
name: 'Windows (ARM64) Installer'
|
|
runs-on: windows-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Build CPython installer
|
|
run: .\Tools\msi\build.bat -arm64
|