Skip to content

Commit d0a91bd

Browse files
authored
bpo-47037: Test debug builds on Windows in CI so that native assertions are noticed sooner (GH-31965)
1 parent f168317 commit d0a91bd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,12 @@ jobs:
113113
steps:
114114
- uses: actions/checkout@v2
115115
- name: Build CPython
116-
run: .\PCbuild\build.bat -e -p Win32
116+
run: .\PCbuild\build.bat -e -d -p Win32
117117
timeout-minutes: 30
118118
- name: Display build info
119119
run: .\python.bat -m test.pythoninfo
120120
- name: Tests
121-
run: .\PCbuild\rt.bat -p Win32 -q -uall -u-cpu -rwW --slowest --timeout=1200 -j0
121+
run: .\PCbuild\rt.bat -p Win32 -d -q -uall -u-cpu -rwW --slowest --timeout=1200 -j0
122122

123123
build_win_amd64:
124124
name: 'Windows (x64)'
@@ -132,12 +132,12 @@ jobs:
132132
- name: Register MSVC problem matcher
133133
run: echo "::add-matcher::.github/problem-matchers/msvc.json"
134134
- name: Build CPython
135-
run: .\PCbuild\build.bat -e -p x64
135+
run: .\PCbuild\build.bat -e -d -p x64
136136
timeout-minutes: 30
137137
- name: Display build info
138138
run: .\python.bat -m test.pythoninfo
139139
- name: Tests
140-
run: .\PCbuild\rt.bat -p x64 -q -uall -u-cpu -rwW --slowest --timeout=1200 -j0
140+
run: .\PCbuild\rt.bat -p x64 -d -q -uall -u-cpu -rwW --slowest --timeout=1200 -j0
141141

142142
build_macos:
143143
name: 'macOS'

0 commit comments

Comments
 (0)