| ... | @@ -9,7 +9,7 @@ fi | ... | @@ -9,7 +9,7 @@ fi |
| 9 | | 9 | |
| 10 | ZIG="$1" | 10 | ZIG="$1" |
| 11 | TARGET="$2" | 11 | TARGET="$2" |
| 12 | MPCU="$3" | 12 | MCPU="$3" |
| 13 | PREFIX="$4" | 13 | PREFIX="$4" |
| 14 | | 14 | |
| 15 | git checkout "$GITHUB_BASE_REF" | 15 | git checkout "$GITHUB_BASE_REF" |
| ... | @@ -37,7 +37,13 @@ ninja install | ... | @@ -37,7 +37,13 @@ ninja install |
| 37 | | 37 | |
| 38 | cd .. | 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 | "build-base/stage3/bin/zig build-exe test/standalone/hello_world/hello.zig" \ | 45 | "build-base/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" \ | 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" |