summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorSteve Dower <steve.dower@python.org>2023-05-25 15:17:12 (GMT)
committerGitHub <noreply@github.com>2023-05-25 15:17:12 (GMT)
commit569b2b8d612354062b8679d2d3f44f7ee03e66c2 (patch)
tree8858389f4de8b4e7080f4955712a82537814d24f /.github
parentdbc8216f4c00ea40b0c2d3ca487e5afeb4b0e0b1 (diff)
downloadcpython-569b2b8d612354062b8679d2d3f44f7ee03e66c2.zip
cpython-569b2b8d612354062b8679d2d3f44f7ee03e66c2.tar.gz
cpython-569b2b8d612354062b8679d2d3f44f7ee03e66c2.tar.bz2
Improves the Windows MSI test run on PR (GH-104929)
Correctly set the exit code when builds fail Also build docs as part of the test
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build_msi.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/build_msi.yml b/.github/workflows/build_msi.yml
index 2bed090..22f613a 100644
--- a/.github/workflows/build_msi.yml
+++ b/.github/workflows/build_msi.yml
@@ -8,12 +8,14 @@ on:
- '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
@@ -33,4 +35,4 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Build CPython installer
- run: .\Tools\msi\build.bat -${{ matrix.type }}
+ run: .\Tools\msi\build.bat --doc -${{ matrix.type }}