Add op_sha256tree #2642
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: Run benchmarks | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - dev | |
| tags: | |
| - "**" | |
| pull_request: | |
| branches: | |
| - "**" | |
| jobs: | |
| benchmark: | |
| name: Benchmark on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [macos-13, ubuntu-latest, windows-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - uses: chia-network/actions/setup-python@main | |
| name: Install Python 3.9 | |
| with: | |
| python-version: 3.9 | |
| - name: Update pip | |
| run: | | |
| python -m pip install --upgrade pip | |
| - name: Set up rust | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Run benchmarks | |
| run: cargo bench | |
| max-cost-checks: | |
| name: Cost checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 1 | |
| - uses: chia-network/actions/setup-python@main | |
| name: Install Python 3.9 | |
| with: | |
| python-version: 3.9 | |
| - name: Update pip | |
| run: | | |
| python -m pip install --upgrade pip | |
| - name: Set up rust | |
| uses: dtolnay/rust-toolchain@stable | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install maturin | |
| rustup target add x86_64-unknown-linux-musl | |
| - name: Build | |
| env: | |
| CC: gcc | |
| run: | | |
| python -m venv venv | |
| ln -s venv/bin/activate | |
| . ./activate | |
| python -m pip install colorama | |
| maturin develop -m wheel/Cargo.toml --release --features=openssl | |
| - name: Run cost checks | |
| run: | | |
| . ./activate | |
| cd tests | |
| ./generate-programs.py | |
| ./run-programs.py |