diff options
author | 2020-11-18 17:24:56 +0000 | |
---|---|---|
committer | 2020-11-18 17:24:56 +0000 | |
commit | 8b1f4cc4644869812ff7f210a7fcbe872d88846e (patch) | |
tree | 34cf00081a89a2ba2ff7a6f0dfdd1ec89ca142ae /.github | |
parent | bpo-42398: Fix "make regen-all" race condition (GH-23362) (GH-23367) (diff) | |
download | cpython-8b1f4cc4644869812ff7f210a7fcbe872d88846e.tar.gz cpython-8b1f4cc4644869812ff7f210a7fcbe872d88846e.tar.bz2 cpython-8b1f4cc4644869812ff7f210a7fcbe872d88846e.zip |
bpo-42336: Improve PCbuild batch files (GH-23325)
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 e4e5a3ad63d..3859cc3ecec 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -52,7 +52,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)' @@ -66,7 +66,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' |