File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -48,10 +48,10 @@ jobs:
48
48
--prefix=/opt/python-dev \
49
49
--with-openssl="$(brew --prefix openssl@3.0)"
50
50
- name : Build CPython
51
- run : make -j8 &> compiler_output.txt
51
+ run : set -o pipefail; make -j8 2>&1 | tee compiler_output.txt
52
52
- name : Display build info
53
53
run : make pythoninfo
54
54
- name : Check compiler warnings
55
- run : python Tools/build/check_warnings.py --compiler-output-file-path=compiler_output.txt --warning-ignore-file-path=Tools/build/.warningignore_macos --compiler-output-type=clang
55
+ run : python3 Tools/build/check_warnings.py --compiler-output-file-path=compiler_output.txt --warning-ignore-file-path=Tools/build/.warningignore_macos --compiler-output-type=clang
56
56
- name : Tests
57
57
run : make test
You can’t perform that action at this time.
0 commit comments