Implement V8-style JSON stringify optimizations for aarch64 with improved fallback implementation #20
This file contains hidden or 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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
bench: | |
runs-on: ubuntu-24.04-arm | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
targets: 'aarch64-unknown-linux-gnu' | |
env: | |
CARGO_INCREMENTAL: '1' | |
- name: Run benchmarks | |
run: cargo bench | |
env: | |
RUSTFLAGS: '-C target-cpu=native' |