From 481fcabb59e4ff1527997016a9b7dd5444d3d6d4 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Thu, 2 Apr 2026 16:16:12 +0300 Subject: [PATCH] [3.10] Remove MSI build from security-only branch (GH-148007) (GH-148008) (cherry picked from commit a78cbed7405b262e38ee3c1f215eda719d69453e) Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> --- .github/workflows/build_msi.yml | 47 --------------------------------- 1 file changed, 47 deletions(-) delete mode 100644 .github/workflows/build_msi.yml diff --git a/.github/workflows/build_msi.yml b/.github/workflows/build_msi.yml deleted file mode 100644 index 12bda650c9bf1e..00000000000000 --- a/.github/workflows/build_msi.yml +++ /dev/null @@ -1,47 +0,0 @@ -name: TestsMSI - -on: - push: - branches: - - master - - 3.10 - - 3.9 - - 3.8 - - 3.7 - paths: - - 'Tools/msi/**' - - '.github/workflows/build_msi.yml' - pull_request: - branches: - - master - - 3.10 - - 3.9 - - 3.8 - - 3.7 - 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_win32: - name: 'Windows (x86) Installer' - runs-on: windows-2022 - steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - name: Build CPython installer - run: .\Tools\msi\build.bat --doc -x86 - - build_win_amd64: - name: 'Windows (x64) Installer' - runs-on: windows-2022 - steps: - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - name: Build CPython installer - run: .\Tools\msi\build.bat --doc -x64