diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-11-18 09:45:54 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-18 09:45:54 -0800 |
commit | 37f6fe2c935a57cd1bd42c773aba255d8134cb61 (patch) | |
tree | 2b9352c47175a23586b683bd1878c59d55d139a7 /.github | |
parent | 35bf8ea7bef7151a420a67638e88d6a1fd81d1a0 (diff) | |
download | cpython-git-37f6fe2c935a57cd1bd42c773aba255d8134cb61.tar.gz |
bpo-42336: Improve PCbuild batch files (GH-23275)
(cherry picked from commit 2156d964a12285280c533af1c96eb273c58451e6)
Co-authored-by: Steve Dower <steve.dower@python.org>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9e63b68576..f66e042dac 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -59,7 +59,7 @@ jobs: - name: Display build info run: .\python.bat -m test.pythoninfo - name: Tests - run: .\PCbuild\rt.bat -q -uall -u-cpu -rwW --slowest --timeout=1200 -j0 + run: .\PCbuild\rt.bat -p Win32 -q -uall -u-cpu -rwW --slowest --timeout=1200 -j0 build_win_amd64: name: 'Windows (x64)' @@ -73,7 +73,7 @@ jobs: - name: Display build info run: .\python.bat -m test.pythoninfo - name: Tests - run: .\PCbuild\rt.bat -x64 -q -uall -u-cpu -rwW --slowest --timeout=1200 -j0 + run: .\PCbuild\rt.bat -p x64 -q -uall -u-cpu -rwW --slowest --timeout=1200 -j0 build_macos: name: 'macOS' |