Merge CodeBlock
constant pools (#3413)
#1
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: Main workflows | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
benchmark: | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
name: Upload docs and run benchmarks | |
runs-on: ubuntu-latest | |
timeout-minutes: 120 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions-rs/[email protected] | |
with: | |
toolchain: stable | |
override: true | |
profile: minimal | |
- name: Cache cargo | |
uses: actions/cache@v3 | |
with: | |
path: | | |
target | |
!target/doc_upload | |
~/.cargo/git | |
~/.cargo/registry | |
key: ${{ runner.os }}-cargo-doc-bench-${{ hashFiles('**/Cargo.lock') }} | |
- name: Generate documentation | |
uses: actions-rs/cargo@v1 | |
with: | |
command: doc | |
args: -v --document-private-items --all-features --workspace --no-deps --exclude boa_examples | |
- run: echo "<meta http-equiv=refresh content=0;url=boa_engine/index.html>" > target/doc/index.html | |
- run: | | |
if [ -d target/doc_upload ]; then rm -rf target/doc_upload; fi | |
mkdir target/doc_upload && mv target/doc target/doc_upload/doc | |
- name: Upload documentation | |
uses: crazy-max/[email protected] | |
with: | |
target_branch: gh-pages | |
keep_history: true | |
build_dir: target/doc_upload | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Run benchmark | |
run: cargo bench -p boa_engine -- --output-format bencher | tee output.txt | |
- name: Store benchmark result | |
uses: benchmark-action/[email protected] | |
with: | |
name: Boa Benchmarks | |
tool: "cargo" | |
output-file-path: output.txt | |
auto-push: true | |
github-token: ${{ secrets.GITHUB_TOKEN }} |