Skip to content

Commit c763ff9

Browse files
committed
Improve file paths
1 parent 4cd083c commit c763ff9

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

benchmarks/json-parsers/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
echo "### simple-json-parser: parse github-api.json (SDE)" > $GITHUB_STEP_SUMMARY
22
echo "" > $GITHUB_STEP_SUMMARY
3-
depict count --format markdown --write-results-to $GITHUB_STEP_SUMMARY target/release/examples/parse github-api.json
3+
./depict count --format markdown --write-results-to $GITHUB_STEP_SUMMARY ./parse github-api.json

benchmarks/json-parsers/setup.sh

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
gh repo clone kaleidawave/depict
2-
cd depict && git checkout cli-improvements && cd ..
3-
cargo install --path depict
4-
depict install
2+
cd depict
3+
git checkout cli-improvements
4+
cargo build
5+
mv target/debug/depict ~
6+
cd ~
57

6-
gh repo clone kaleidawave/simple-json-parser .
8+
gh repo clone kaleidawave/simple-json-parser
9+
cd simple-json-parser
710
git checkout improvements
8-
git status
9-
cargo b --release --example parse
11+
cargo b --release --example parse
12+
mv target/release/examples/parse ~

0 commit comments

Comments
 (0)