-
Notifications
You must be signed in to change notification settings - Fork 118
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
A bunch of patches to record some of the node perf data at runtime. disable some reports, mkdir before writing create the dirs so we can write there adding error correction fixing the collecting of output to after the unit tests finish lets try to capture the results fixing the job update dirs now listing the files and running different profs adding more test adding error checking to the copy looking for isolate removing extra move fixing the directories adding in a matrix of profile tests adding node version to matrix rename the artifact to include the node version moving count to 32 perf splitting the keccak test file into parts by the sizes because so larger fixme: refactor to reduce duplicate code and use parameters reduce matrix size perf recording A bunch of patches to record some of the node perf data at runtime. disable some reports, mkdir before writing create the dirs so we can write there adding error correction fixing the collecting of output to after the unit tests finish lets try to capture the results fixing the job update dirs now listing the files and running different profs adding more test adding error checking to the copy looking for isolate removing extra move fixing the directories adding in a matrix of profile tests adding node version to matrix rename the artifact to include the node version moving count to 32 perf splitting the keccak test file into parts by the sizes because so larger fixme: refactor to reduce duplicate code and use parameters reduce matrix size all branchs Refactoring output directory We want the output directories to contain the branch name so we can merge results easily. also using shellcheck https://github.com/mschuett/yaml-shellcheck.git on the yaml. fixing variable names get rid of final slash that produces // double slashes run only chunk 13 with more detail
- Loading branch information
mike dupont
committed
Oct 21, 2024
1 parent
ad774e1
commit 0614993
Showing
14 changed files
with
730 additions
and
49 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
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
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
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
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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
name: o1js typedoc | ||
on: | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
# push: | ||
# branches: | ||
# - main | ||
|
||
jobs: | ||
Build-Doc: | ||
|
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
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
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
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
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 |
---|---|---|
@@ -1 +1,4 @@ | ||
node --enable-source-maps --stack-trace-limit=1000 src/build/run.js $@ | ||
node --cpu-prof --expose-gc --cpu-prof-dir tests/report/profile-data --enable-source-maps --stack-trace-limit=1000 src/build/run.js $@ | ||
|
||
node --heap-prof --expose-gc --enable-source-maps --stack-trace-limit=1000 src/build/run.js $@ | ||
node --prof --expose-gc --enable-source-maps --stack-trace-limit=1000 src/build/run.js $@ |
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.