Some fixes (#105) #138
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
name: Performance and size | |
on: | |
push: | |
branches: [main] | |
workflow_dispatch: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
run-benchmarks: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/bin/ | |
~/.cargo/registry/index/ | |
~/.cargo/registry/cache/ | |
~/.cargo/git/db/ | |
target/ | |
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }} | |
- uses: brndnmtthws/rust-action-cargo-binstall@v1 | |
with: | |
packages: hyperfine | |
- name: Build Ezno | |
run: cargo build --release | |
env: | |
CARGO_PROFILE_RELEASE_DEBUG: true | |
- name: Download files | |
run: | | |
curl https://esm.sh/v128/[email protected]/es2022/react-dom.mjs > react.js | |
- name: Run checker performance | |
shell: bash | |
run: | | |
# Generate a file which contains everything that Ezno currently implements | |
cargo run -p ezno-parser --example code_blocks_to_script ./checker/specification/specification.md demo.ts | |
echo "<details> | |
<summary>Input</summary> | |
\`\`\`ts | |
" >> $GITHUB_STEP_SUMMARY | |
cat demo.ts >> $GITHUB_STEP_SUMMARY | |
echo "\`\`\` | |
</details> | |
" >> $GITHUB_STEP_SUMMARY | |
# Printing diagnostics, so turn colors off for GH Summary | |
NO_COLOR=1 | |
echo "<details> | |
<summary>Diagnostics</summary> | |
\`\`\`" >> $GITHUB_STEP_SUMMARY | |
./target/release/ezno check demo.ts --timings &>> $GITHUB_STEP_SUMMARY | |
echo "\`\`\` | |
</details> | |
" >> $GITHUB_STEP_SUMMARY | |
echo "### Checking | |
\`\`\`shell" >> $GITHUB_STEP_SUMMARY | |
hyperfine './target/release/ezno check demo.ts' >> $GITHUB_STEP_SUMMARY | |
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY | |
- name: Run parser, minfier/stringer performance | |
shell: bash | |
run: | | |
curl https://esm.sh/v128/[email protected]/es2022/react-dom.mjs > react.js | |
echo "### Parsing and writing out minified form of `react-dom` | |
\`\`\`shell">> $GITHUB_STEP_SUMMARY | |
hyperfine './target/release/ezno ast-explorer --file react.js uglifier' >> $GITHUB_STEP_SUMMARY | |
echo "\`\`\`" >> $GITHUB_STEP_SUMMARY | |
- name: Print (linux) binary size | |
run: | | |
echo "Binary is $(stat -c %s ./target/release/ezno) bytes" >> $GITHUB_STEP_SUMMARY |