Revert "Correcct the balance of the contract address upon creation, n… #97
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
on: | |
push: | |
branches: main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
jobs: | |
benchmark_base_branch: | |
name: Continuous Benchmarking | |
permissions: | |
checks: write | |
runs-on: self-hosted | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: bencherdev/bencher@main | |
- name: Install Rust | |
run: curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y && echo "$HOME/.cargo/bin" >> $GITHUB_PATH | |
- name: Install dependencies | |
run: sudo add-apt-repository ppa:ethereum/ethereum && sudo apt update && sudo apt install -y solc build-essential pkg-config libssl-dev cmake protobuf-compiler | |
- name: Track base branch benchmarks | |
run: | | |
bencher run \ | |
--project zq2 \ | |
--token '${{ secrets.BENCHER_API_TOKEN }}' \ | |
--branch main \ | |
--testbed self-hosted \ | |
--threshold-measure latency \ | |
--threshold-test t_test \ | |
--threshold-max-sample-size 64 \ | |
--threshold-upper-boundary 0.99 \ | |
--thresholds-reset \ | |
--err \ | |
--adapter rust_criterion \ | |
--github-actions '${{ secrets.GITHUB_TOKEN }}' \ | |
cargo bench |