Skip to content

More paralllel tests #5927

More paralllel tests

More paralllel tests #5927

Workflow file for this run

name: bench
on:
push:
branches:
- main
pull_request:
concurrency:
group: bench-${{ github.ref }}
cancel-in-progress: true
jobs:
interpret:
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- macos-14
interpreter:
- stak-interpret
- mstak-interpret
exclude:
- os: ${{ github.ref == 'refs/heads/main' && 'none' || 'macos-14' }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ./tools/ci/github/setup
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: tools/bench.sh -i ${{ matrix.interpreter }}
bench:
needs:
- interpret
if: always()
runs-on: ubuntu-latest
steps:
- run: for result in ${{ join(needs.*.result, ' ') }}; do [ $result = success ]; done