Skip to content

Commit

Permalink
Merge pull request #5975 from cocosolos/cpp-ci
Browse files Browse the repository at this point in the history
Fix cpp ci only reporting stderr
  • Loading branch information
claywar authored Jun 30, 2024
2 parents a707bed + 92e292f commit 7002d96
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
for changed_file in ${{ steps.changed-files.outputs.all }}; do
if [[ -f $changed_file ]]; then
if [[ $changed_file == *.cpp ]]; then
bash tools/ci/cpp.sh ${changed_file} 2>> cpp_checks.txt || true
bash tools/ci/cpp.sh ${changed_file} 2>> cpp_checks.txt >> cpp_checks.txt || true
fi
fi
done
Expand Down

0 comments on commit 7002d96

Please sign in to comment.