CodSpeed #513
Workflow file for this run
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: CodSpeed | |
| on: | |
| push: | |
| branches: [master] | |
| pull_request: | |
| branches: [master] | |
| workflow_dispatch: | |
| env: | |
| PYTHON_VERSION: "3.12" | |
| SHARDS: 4 | |
| jobs: | |
| benchmarks: | |
| strategy: | |
| matrix: | |
| shard: [1, 2, 3, 4] | |
| mode: ["instrumentation"] # , "walltime" | |
| name: "Run ${{ matrix.mode }} benchmarks (Shard #${{ matrix.shard }})" | |
| runs-on: ${{ matrix.mode == 'instrumentation' && 'ubuntu-24.04' || 'codspeed-macro' }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: "recursive" | |
| - name: Install required-version defined in uv.toml | |
| uses: astral-sh/setup-uv@v5 | |
| - uses: actions/setup-python@v2 | |
| with: | |
| python-version: ${{ env.PYTHON_VERSION }} | |
| - name: Install local version of pytest-codspeed | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install valgrind -y | |
| uv sync --dev | |
| sudo apt-get remove valgrind -y | |
| - name: Install CodSpeed Runner | |
| run: curl --proto '=https' --tlsv1.2 -LsSf https://github.com/CodSpeedHQ/runner/releases/download/v4.2.1/codspeed-runner-installer.sh | sh | |
| # Install custom valgrind | |
| - name: Download Valgrind source | |
| run: git clone https://github.com/CodSpeedHQ/valgrind-codspeed --branch dbg/obj-skip | |
| - name: Install Valgrind | |
| working-directory: valgrind-codspeed | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y \ | |
| build-essential \ | |
| automake \ | |
| autoconf \ | |
| libc6-dev \ | |
| gcc-multilib \ | |
| libc6-dev-i386 \ | |
| gdb \ | |
| docbook \ | |
| docbook-xsl \ | |
| docbook-xml \ | |
| xsltproc | |
| ./autogen.sh | |
| ./configure | |
| make -j$(nproc) | |
| sudo make install | |
| - name: Run benchmarks | |
| uses: CodSpeedHQ/action@main | |
| with: | |
| mode: ${{ matrix.mode }} | |
| run: uv run pytest tests/benchmarks/ --codspeed --test-group=${{ matrix.shard }} --test-group-count=${{ env.SHARDS }} | |
| token: ${{ secrets.CODSPEED_TOKEN }} | |
| all-checks: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: echo "All CI checks passed." | |
| needs: | |
| - benchmarks |