2020-03-11 08:18:12 -03:00
|
|
|
name: TestsMSI
|
|
|
|
|
|
|
|
on:
|
2021-10-21 17:34:18 -03:00
|
|
|
workflow_dispatch:
|
2020-03-11 08:18:12 -03:00
|
|
|
push:
|
|
|
|
branches:
|
2021-05-19 12:14:37 -03:00
|
|
|
- 'main'
|
2022-06-28 06:33:23 -03:00
|
|
|
- '3.*'
|
2020-03-11 08:18:12 -03:00
|
|
|
paths:
|
|
|
|
- 'Tools/msi/**'
|
2023-05-25 12:17:12 -03:00
|
|
|
- '.github/workflows/build_msi.yml'
|
2020-03-11 08:18:12 -03:00
|
|
|
pull_request:
|
|
|
|
branches:
|
2021-05-19 12:14:37 -03:00
|
|
|
- 'main'
|
2022-06-28 06:33:23 -03:00
|
|
|
- '3.*'
|
2020-03-11 08:18:12 -03:00
|
|
|
paths:
|
|
|
|
- 'Tools/msi/**'
|
2023-05-25 12:17:12 -03:00
|
|
|
- '.github/workflows/build_msi.yml'
|
2020-03-11 08:18:12 -03:00
|
|
|
|
2022-05-21 04:55:21 -03:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2022-10-08 16:21:38 -03:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-03-11 08:18:12 -03:00
|
|
|
jobs:
|
2022-06-28 06:33:23 -03:00
|
|
|
build:
|
|
|
|
name: Windows Installer
|
2020-03-11 08:18:12 -03:00
|
|
|
runs-on: windows-latest
|
2023-04-14 06:01:10 -03:00
|
|
|
timeout-minutes: 60
|
2022-06-28 06:33:23 -03:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
type: [x86, x64, arm64]
|
2024-01-17 17:52:23 -04:00
|
|
|
env:
|
|
|
|
IncludeFreethreaded: true
|
2020-03-11 08:18:12 -03:00
|
|
|
steps:
|
2023-09-04 17:36:16 -03:00
|
|
|
- uses: actions/checkout@v4
|
2020-03-11 08:18:12 -03:00
|
|
|
- name: Build CPython installer
|
2023-05-25 12:17:12 -03:00
|
|
|
run: .\Tools\msi\build.bat --doc -${{ matrix.type }}
|