| author | |
| committer | |
| log | ea62faf382bb6240f5bec6410f8d248828d0e560 |
| tree | d0ef08456c394cb07a2154c5818a4126a7c78828 |
| parent | ca71aeb569f4c6558da88ac1dad955f74282aa46 |
3 files changed, 4 insertions(+), 4 deletions(-)
.github/workflows/ci.yaml+1-1| ... | ... | @@ -22,7 +22,7 @@ jobs: |
| 22 | 22 | with: |
| 23 | 23 | script: | |
| 24 | 24 | const fs = require('fs'); |
| 25 | const body = fs.readFileSync('perf.txt', 'utf8'); | |
| 25 | const body = fs.readFileSync('build-new/perf.txt', 'utf8'); | |
| 26 | 26 | github.rest.issues.createComment({ |
| 27 | 27 | issue_number: context.issue.number, |
| 28 | 28 | owner: context.repo.owner, |
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." > perf.txt | |
| 113 | echo "Error occurred measuring the performance delta of this pull request." > build-new/perf.txt |
ci/measure-perf-delta.sh+2-2| ... | ... | @@ -39,5 +39,5 @@ cd .. |
| 39 | 39 | |
| 40 | 40 | poop \ |
| 41 | 41 | "build-base/stage3/bin/zig build-exe test/standalone/hello_world/hello.zig" \ |
| 42 | "build-head/stage3/bin/zig build-exe test/standalone/hello_world/hello.zig" \ | |
| 43 | > perf.txt | |
| 42 | "build-new/stage3/bin/zig build-exe test/standalone/hello_world/hello.zig" \ | |
| 43 | > build-new/perf.txt |