chore: fix benchmark once more
Github Actions' `sh` doesn't seem to like `echo -e`
This commit is contained in:
parent
bd1a37c57e
commit
80603a256d
1 changed files with 2 additions and 2 deletions
|
|
@ -48,8 +48,8 @@
|
|||
cwd: ../compiler/
|
||||
cmd: |
|
||||
set -eu
|
||||
echo -n 'sum binary sizes: '
|
||||
for f in *.lean; do ../bench/compile.sh $f; echo -ne "$f.out\0"; done | wc -c --files0-from=- | tail -1 | cut -d' ' -f 1
|
||||
printf 'sum binary sizes: '
|
||||
for f in *.lean; do ../bench/compile.sh $f; printf '%s\0' "$f.out"; done | wc -c --files0-from=- | tail -1 | cut -d' ' -f 1
|
||||
max_runs: 1
|
||||
runner: output
|
||||
- attributes:
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue