diff options
author | Nate Ohlson <nohlson@purdue.edu> | 2024-07-30 19:49:15 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-30 19:49:15 (GMT) |
commit | 1cac0908fb6866c30b7fe106bc8d6cd03c7977f9 (patch) | |
tree | 82a7cfede6b3a75a1906bffd778e6f6ccaaf7a48 /.github | |
parent | c68cb8e0c9bd75ded25578c2fba6469e55a06e93 (diff) | |
download | cpython-1cac0908fb6866c30b7fe106bc8d6cd03c7977f9.zip cpython-1cac0908fb6866c30b7fe106bc8d6cd03c7977f9.tar.gz cpython-1cac0908fb6866c30b7fe106bc8d6cd03c7977f9.tar.bz2 |
gh-112301: Add argument aliases and tee compiler output for check warnings (GH-122465)
Also remove superfluous shebang from the warning check script
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/reusable-ubuntu.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/reusable-ubuntu.yml b/.github/workflows/reusable-ubuntu.yml index c6289a7..8dd5f55 100644 --- a/.github/workflows/reusable-ubuntu.yml +++ b/.github/workflows/reusable-ubuntu.yml @@ -75,7 +75,7 @@ jobs: ${{ fromJSON(inputs.free-threading) && '--disable-gil' || '' }} - name: Build CPython out-of-tree working-directory: ${{ env.CPYTHON_BUILDDIR }} - run: make -j4 &> compiler_output.txt + run: set -o pipefail; make -j4 2>&1 | tee compiler_output.txt - name: Display build info working-directory: ${{ env.CPYTHON_BUILDDIR }} run: make pythoninfo |