mirror of
https://github.com/python/cpython.git
synced 2024-11-25 01:20:47 +01:00
b26717b319
Bump GitHub Actions
60 lines
1.1 KiB
YAML
60 lines
1.1 KiB
YAML
name: TestsMSI
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
- '3.11'
|
|
- '3.10'
|
|
- '3.9'
|
|
- '3.8'
|
|
- '3.7'
|
|
paths:
|
|
- 'Tools/msi/**'
|
|
pull_request:
|
|
branches:
|
|
- 'main'
|
|
- '3.11'
|
|
- '3.10'
|
|
- '3.9'
|
|
- '3.8'
|
|
- '3.7'
|
|
paths:
|
|
- 'Tools/msi/**'
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
build_win32:
|
|
name: 'Windows (x86) Installer'
|
|
runs-on: windows-latest
|
|
timeout-minutes: 60
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Build CPython installer
|
|
run: .\Tools\msi\build.bat -x86
|
|
|
|
build_win_amd64:
|
|
name: 'Windows (x64) Installer'
|
|
runs-on: windows-latest
|
|
timeout-minutes: 60
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Build CPython installer
|
|
run: .\Tools\msi\build.bat -x64
|
|
|
|
build_win_arm64:
|
|
name: 'Windows (ARM64) Installer'
|
|
runs-on: windows-latest
|
|
timeout-minutes: 60
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Build CPython installer
|
|
run: .\Tools\msi\build.bat -arm64
|