-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
perf: ⚡️ add script to generate flame graphs
- Loading branch information
Showing
5 changed files
with
10,214 additions
and
859 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#!/bin/sh | ||
|
||
cd ts-proto || exit # Change to the ts-proto directory | ||
pnpm install >/dev/null # Install dependencies | ||
./gen_grpc.sh >/dev/null # Generate the gRPC files | ||
pnpm build >/dev/null # Build the typescript files | ||
pnpm test:flame # Run the benchmarks | ||
cd .. # Change back to the root directory | ||
cd ts-proto-v2 || exit # Change to the ts-proto-v2 directory | ||
pnpm install >/dev/null # Install dependencies | ||
./gen_grpc.sh >/dev/null # Generate the gRPC files | ||
pnpm build >/dev/null # Build the typescript files | ||
pnpm test:flame # Run the benchmarks | ||
cd .. # Change back to the root directory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.