Skip to content

Commit

Permalink
ci: remove show stderr in ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
saitewasreset committed Mar 12, 2024
1 parent 581251c commit dcdb9ba
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,20 +119,6 @@ jobs:
- name: Build Reed Pal
run: ${{ env.CARGO }} build --verbose

# This is useful for debugging problems when the expected build artifacts
# (like shell completions and man pages) aren't generated.
- name: Show build.rs stderr
shell: bash
run: |
set +x
stderr="$(find "${{ env.TARGET_DIR }}/debug" -name stderr -print0 | xargs -0 ls -t | head -n1)"
if [ -s "$stderr" ]; then
echo "===== $stderr ===== "
cat "$stderr"
echo "====="
fi
set -x
- name: Run tests
if: matrix.target == ''
run: ${{ env.CARGO }} test --verbose ${{ env.TARGET_FLAGS }}

0 comments on commit dcdb9ba

Please sign in to comment.