diff options
author | Steve Dower <steve.dower@python.org> | 2022-03-18 17:19:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-18 17:19:28 (GMT) |
commit | d0a91bd277d1122b41d59e8022b596e3b3ae24fe (patch) | |
tree | bb64d9100dd35add3f7d142a633f0d859e22af2d /.github/workflows/build.yml | |
parent | f1683173aabb0ff22e378d36981af6a72a24d6a1 (diff) | |
download | cpython-d0a91bd277d1122b41d59e8022b596e3b3ae24fe.zip cpython-d0a91bd277d1122b41d59e8022b596e3b3ae24fe.tar.gz cpython-d0a91bd277d1122b41d59e8022b596e3b3ae24fe.tar.bz2 |
bpo-47037: Test debug builds on Windows in CI so that native assertions are noticed sooner (GH-31965)
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r-- | .github/workflows/build.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b950c59..bda6dde 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -113,12 +113,12 @@ jobs: steps: - uses: actions/checkout@v2 - name: Build CPython - run: .\PCbuild\build.bat -e -p Win32 + run: .\PCbuild\build.bat -e -d -p Win32 timeout-minutes: 30 - name: Display build info run: .\python.bat -m test.pythoninfo - name: Tests - run: .\PCbuild\rt.bat -p Win32 -q -uall -u-cpu -rwW --slowest --timeout=1200 -j0 + run: .\PCbuild\rt.bat -p Win32 -d -q -uall -u-cpu -rwW --slowest --timeout=1200 -j0 build_win_amd64: name: 'Windows (x64)' @@ -132,12 +132,12 @@ jobs: - name: Register MSVC problem matcher run: echo "::add-matcher::.github/problem-matchers/msvc.json" - name: Build CPython - run: .\PCbuild\build.bat -e -p x64 + run: .\PCbuild\build.bat -e -d -p x64 timeout-minutes: 30 - name: Display build info run: .\python.bat -m test.pythoninfo - name: Tests - run: .\PCbuild\rt.bat -p x64 -q -uall -u-cpu -rwW --slowest --timeout=1200 -j0 + run: .\PCbuild\rt.bat -p x64 -d -q -uall -u-cpu -rwW --slowest --timeout=1200 -j0 build_macos: name: 'macOS' |