authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-09-14 18:17:45-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2023-09-14 18:17:45-07:00
logea62faf382bb6240f5bec6410f8d248828d0e560
treed0ef08456c394cb07a2154c5818a4126a7c78828
parentca71aeb569f4c6558da88ac1dad955f74282aa46

fixup file paths


3 files changed, 4 insertions(+), 4 deletions(-)

.github/workflows/ci.yaml+1-1
...@@ -22,7 +22,7 @@ jobs:...@@ -22,7 +22,7 @@ jobs:
22 with:22 with:
23 script: |23 script: |
24 const fs = require('fs');24 const fs = require('fs');
25 const body = fs.readFileSync('perf.txt', 'utf8');25 const body = fs.readFileSync('build-new/perf.txt', 'utf8');
26 github.rest.issues.createComment({26 github.rest.issues.createComment({
27 issue_number: context.issue.number,27 issue_number: context.issue.number,
28 owner: context.repo.owner,28 owner: context.repo.owner,
ci/aarch64-linux-release.sh+1-1
...@@ -110,4 +110,4 @@ ninja install...@@ -110,4 +110,4 @@ ninja install
110# After all correctness checking, compare performance against the merge-base.110# After all correctness checking, compare performance against the merge-base.
111cd ..111cd ..
112sh ci/measure-perf-delta.sh "$ZIG" "$TARGET" "$MCPU" "$PREFIX" || \112sh ci/measure-perf-delta.sh "$ZIG" "$TARGET" "$MCPU" "$PREFIX" || \
113 echo "Error occurred measuring the performance delta of this pull request." > perf.txt113 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,5 +39,5 @@ cd ..
3939
40poop \40poop \
41 "build-base/stage3/bin/zig build-exe test/standalone/hello_world/hello.zig" \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" \42 "build-new/stage3/bin/zig build-exe test/standalone/hello_world/hello.zig" \
43 > perf.txt43 > build-new/perf.txt