mirror of
https://github.com/python/cpython.git
synced 2026-01-04 22:42:14 +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>.
(cherry picked from commit 1ba63e3a9b)
38 lines
648 B
YAML
38 lines
648 B
YAML
name: TestsMSI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- 3.10
|
|
- 3.9
|
|
- 3.8
|
|
- 3.7
|
|
paths:
|
|
- 'Tools/msi/**'
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
- 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
|