File tree Expand file tree Collapse file tree 2 files changed +11
-4
lines changed
Expand file tree Collapse file tree 2 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 6666 cd ..
6767 if [[ -z $EXISTING_FILE ]]; then
6868 mkdir -p ${{ inputs.repo-for-saving-data }}/$OUTPUT_DIR
69- echo "The collected benchmark results will be saved to $OUTPUT_FILE ."
69+ echo "The collected benchmark results will be saved to $OUTPUT_DIR/$OUTPUT_FILENAME ."
7070 echo "::set-output name=output-file::$OUTPUT_DIR/$OUTPUT_FILENAME"
7171 else
7272 echo "The benchmark will not be run because results for that commit are already saved at $EXISTING_FILE."
Original file line number Diff line number Diff line change 6161 if [ -f errors.txt ]; then
6262 ERROR_MESSAGES=$(cat errors.txt)
6363 echo "The benchmark runner reported the following errors:\n$ERROR_MESSAGES"
64- echo "::set-output name=error-messages::Error messages: $ERROR_MESSAGES"
64+ ERROR_MESSAGES=$(cat << EOF
65+ Error messages:
66+ $ERROR_MESSAGES
67+ EOF
68+ )
69+ echo "ERROR_MESSAGES<<EOF" >> $GITHUB_ENV
70+ echo "$ERROR_MESSAGES" >> $GITHUB_ENV
71+ echo "EOF" >> $GITHUB_ENV
6572 fi
6673 shell : bash
6774
7077 with :
7178 message : |
7279 Running benchmarks from commit ${{ github.sha }}...
73- ${{ steps.compute-error-messages.outputs.error-messages }}
80+ ${{ env.ERROR_MESSAGES }}
7481
7582 Results so far:
7683
8592 with :
8693 message : |
8794 :heavy_check_mark: Finished running benchmarks from ${{ github.sha }}.
88- ${{ steps.compute-error-messages.outputs.error-messages }}
95+ ${{ env.ERROR_MESSAGES }}
8996
9097 
9198 comment_includes : ${{ github.sha }}
You can’t perform that action at this time.
0 commit comments