Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions .github/workflows/acme-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,16 @@ jobs:
PROFILE_DURATION_MS: 30000

fraud-model-benchmark:
name: Fraud model benchmark
runs-on: ubuntu-latest-4-cores
name: Fraud model benchmark (${{ matrix.runner_label }})
runs-on: ${{ matrix.runner }}
strategy:
fail-fast: false
matrix:
include:
- runner_label: 4vcpu
runner: ubuntu-latest-4-cores
- runner_label: 16vcpu
runner: ubuntu-latest-16-cores
steps:
- uses: actions/checkout@v4

Expand All @@ -50,7 +58,7 @@ jobs:
env:
PROFILE_CPU_TASKS: 256
PROFILE_CPU_ITERATIONS: 9500000
PROFILE_CPU_WORKERS: 32
PROFILE_CPU_WORKERS: 8

unit-tests:
name: Unit tests shard ${{ matrix.shard }}/8
Expand Down
Loading