Add full UTF-8 support in RON incl. unicode identifiers #79
Workflow file for this run
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: CIBench | |
on: [pull_request] | |
jobs: | |
bench: | |
name: Benchmark | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: ./.github/actions/setup | |
with: | |
key: bench | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
profile: minimal | |
override: true | |
- name: Download the corpus | |
run: | | |
wget https://storage.googleapis.com/ron-backup.clusterfuzz-external.appspot.com/corpus/libFuzzer/ron_arbitrary/public.zip | |
mkdir -p fuzz/corpus/arbitrary | |
unzip public.zip -d fuzz/corpus/arbitrary | |
rm public.zip | |
- uses: juntyr/criterion-compare-action@check-cargo-install | |
with: | |
cwd: fuzz | |
benchName: bench | |
branchName: ${{ github.base_ref }} |