Skip to content

Commit

Permalink
Truncate compatibility report if size is greater than 1024k
Browse files Browse the repository at this point in the history
  • Loading branch information
guillermocalvo committed Jun 1, 2024
1 parent fbcf90b commit ef74ae1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ jobs:
# ================================
- name: Compatibility with version ${{ steps.properties.outputs.previousVersion }}
if: ${{ matrix.jdk == 21 }}
run: cat ./api-compatibility/build/report.txt >> $GITHUB_STEP_SUMMARY
# $GITHUB_STEP_SUMMARY supports content up to a size of 1024k
run: head -c 1048500 ./api-compatibility/build/report.txt >> $GITHUB_STEP_SUMMARY

# ================================
# CACHE SONARCLOUD PACKAGES
Expand Down

0 comments on commit ef74ae1

Please sign in to comment.