summaryrefslogtreecommitdiffstats
path: root/.github/workflows/build_msi.yml
blob: 29282dffa37ec0dabc98342b2aac0f989af8178c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: TestsMSI

on:
  workflow_dispatch:
  push:
    branches:
    - 'main'
    - '3.*'
    paths:
    - 'Tools/msi/**'
    - '.github/workflows/build_msi.yml'
  pull_request:
    branches:
    - 'main'
    - '3.*'
    paths:
    - 'Tools/msi/**'
    - '.github/workflows/build_msi.yml'

permissions:
  contents: read

concurrency:
  group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
  cancel-in-progress: true

jobs:
  build:
    name: Windows Installer
    runs-on: windows-latest
    timeout-minutes: 60
    strategy:
      matrix:
        type: [x86, x64, arm64]
    steps:
    - uses: actions/checkout@v4
    - name: Build CPython installer
      run: .\Tools\msi\build.bat --doc -${{ matrix.type }}