diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-05-25 15:49:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-25 15:49:46 (GMT) |
commit | d176f78ec23116bedaa8c5ad27fe5ca323deebaf (patch) | |
tree | 72ee5f58b910773449699e89806fd181aa0c4fe7 /.github | |
parent | b328ba194157ab5191d056608d35ab4353fc61af (diff) | |
download | cpython-d176f78ec23116bedaa8c5ad27fe5ca323deebaf.zip cpython-d176f78ec23116bedaa8c5ad27fe5ca323deebaf.tar.gz cpython-d176f78ec23116bedaa8c5ad27fe5ca323deebaf.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
(cherry picked from commit 569b2b8d612354062b8679d2d3f44f7ee03e66c2)
Co-authored-by: Steve Dower <steve.dower@python.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build_msi.yml | 4 |
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 }} |