| author | |
| committer | |
| log | f616c4b91dec3ea4f233a52f6388acc565a6d3b3 |
| tree | b21b38b46daaf1d7aa73114bde594bd6d27fa701 |
| parent | 7a375d6d682855bd639263e17a2575052ab90fdc |
2 files changed, 10 insertions(+), 4 deletions(-)
ci/aarch64-linux-release.sh+1-1| ... | ... | @@ -110,4 +110,4 @@ ninja install |
| 110 | 110 | # After all correctness checking, compare performance against the merge-base. |
| 111 | 111 | cd .. |
| 112 | 112 | sh ci/measure-perf-delta.sh "$ZIG" "$TARGET" "$MCPU" "$PREFIX" || \ |
| 113 | echo "Error occurred measuring the performance delta of this pull request." > build-new/perf.txt | |
| 113 | echo "$TARGET: Error occurred measuring the performance delta of this pull request." > build-new/perf.txt |
ci/measure-perf-delta.sh+9-3| ... | ... | @@ -9,7 +9,7 @@ fi |
| 9 | 9 | |
| 10 | 10 | ZIG="$1" |
| 11 | 11 | TARGET="$2" |
| 12 | MPCU="$3" | |
| 12 | MCPU="$3" | |
| 13 | 13 | PREFIX="$4" |
| 14 | 14 | |
| 15 | 15 | git checkout "$GITHUB_BASE_REF" |
| ... | ... | @@ -37,7 +37,13 @@ ninja install |
| 37 | 37 | |
| 38 | 38 | cd .. |
| 39 | 39 | |
| 40 | poop \ | |
| 40 | OUT="build-new/perf.txt" | |
| 41 | echo "$TARGET perf delta against $GITHUB_BASE_REF:" >"$OUT" | |
| 42 | echo '```' >>"$OUT" | |
| 43 | ||
| 44 | $HOME/local/bin/poop \ | |
| 41 | 45 | "build-base/stage3/bin/zig build-exe test/standalone/hello_world/hello.zig" \ |
| 42 | 46 | "build-new/stage3/bin/zig build-exe test/standalone/hello_world/hello.zig" \ |
| 43 | > build-new/perf.txt | |
| 47 | >> build-new/perf.txt | |
| 48 | ||
| 49 | echo '```' >>"$OUT" |