File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -224,6 +224,7 @@ jobs:
224
224
config_hash : ${{ needs.check_source.outputs.config_hash }}
225
225
options : |
226
226
../cpython-ro-srcdir/configure \
227
+ CFLAGS="-fdiagnostics-format=json"
227
228
--config-cache \
228
229
--with-pydebug \
229
230
--with-openssl=$OPENSSL_DIR
@@ -237,6 +238,7 @@ jobs:
237
238
config_hash : ${{ needs.check_source.outputs.config_hash }}
238
239
options : |
239
240
../cpython-ro-srcdir/configure \
241
+ CFLAGS="-fdiagnostics-format=json"
240
242
--config-cache \
241
243
--with-pydebug \
242
244
--with-openssl=$OPENSSL_DIR \
Original file line number Diff line number Diff line change 63
63
key : ${{ github.job }}-${{ runner.os }}-${{ env.IMAGE_VERSION }}-${{ inputs.config_hash }}
64
64
- name : Configure CPython out-of-tree
65
65
working-directory : ${{ env.CPYTHON_BUILDDIR }}
66
- run : ${{ inputs.options }} CFLAGS="-fdiagnostics-format=json"
66
+ run : ${{ inputs.options }}
67
67
- name : Build CPython out-of-tree
68
68
working-directory : ${{ env.CPYTHON_BUILDDIR }}
69
69
run : make -j4 &> compiler_output.txt
Original file line number Diff line number Diff line change @@ -69,9 +69,8 @@ def get_unexpected_warnings(
69
69
for warning in unexpected_warnings :
70
70
print (warning )
71
71
return 1
72
-
73
- return 0
74
72
73
+ return 0
75
74
76
75
def get_unexpected_improvements (
77
76
warnings : list [dict ],
You can’t perform that action at this time.
0 commit comments