Skip to content

test: add ci job for s390x #1846

test: add ci job for s390x

test: add ci job for s390x #1846

Workflow file for this run

name: Benchmarks
on:
push:
branches:
- "master"
pull_request:
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
rust:
runs-on: ubuntu-24.04
timeout-minutes: 30
strategy:
matrix:
package: [jsonschema, referencing]
name: "Run benchmarks (${{ matrix.package }})"
steps:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
key: ${{ matrix.package }}
- run: cargo install cargo-codspeed --force
- run: cargo codspeed build -p ${{ matrix.package }}
- uses: CodSpeedHQ/action@v4
with:
run: cargo codspeed run -p ${{ matrix.package }}
mode: "instrumentation"
token: ${{ secrets.CODSPEED_TOKEN }}