diff --git a/.github/workflows/actions/linux/configure/action.yml b/.github/workflows/actions/linux/configure/action.yml index 05674ae499..bf06dcebd3 100644 --- a/.github/workflows/actions/linux/configure/action.yml +++ b/.github/workflows/actions/linux/configure/action.yml @@ -59,14 +59,15 @@ runs: if [ ${{ steps.configure.outcome }} == 'success' ] then echo "
:heavy_check_mark: CMake configure succeeded" >> ${{ inputs.reportFile }} + echo "" >> ${{ inputs.reportFile }} + echo "Configure Error Log (stderr output):" >> ${{ inputs.reportFile }} + echo '```' >> ${{ inputs.reportFile }} + cat ${{ inputs.errorFile }} >> ${{ inputs.reportFile }} + echo '```' >> ${{ inputs.reportFile }} else echo "
:fire: CMake configure failed" >> ${{ inputs.reportFile }} fi echo "" >> ${{ inputs.reportFile }} - echo "Configure Error Log (stderr output):" >> ${{ inputs.reportFile }} - echo '```' >> ${{ inputs.reportFile }} - cat ${{ inputs.errorFile }} >> ${{ inputs.reportFile }} - echo '```' >> ${{ inputs.reportFile }} echo "Configure Log (stdout output):" >> ${{ inputs.reportFile }} echo '```' >> ${{ inputs.reportFile }} tail -n 60 ${{ inputs.logFile }} >> ${{ inputs.reportFile }}