mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
Lazyfs adds additional overhead causing arm64 machines in CI to not reach robustness test qps requirements due to lack of compute power. Signed-off-by: Marek Siarkowicz <siarkowicz@google.com>
26 lines
609 B
YAML
26 lines
609 B
YAML
---
|
|
name: Robustness
|
|
on: [push, pull_request]
|
|
permissions: read-all
|
|
jobs:
|
|
main:
|
|
uses: ./.github/workflows/robustness-template.yaml
|
|
with:
|
|
etcdBranch: main
|
|
count: 12
|
|
testTimeout: 30m
|
|
artifactName: main
|
|
runs-on: "['ubuntu-latest-8-cores']"
|
|
scenario: TestRobustness
|
|
lazyfsEnabled: true
|
|
main-arm64:
|
|
uses: ./.github/workflows/robustness-template.yaml
|
|
with:
|
|
etcdBranch: main
|
|
count: 12
|
|
testTimeout: 30m
|
|
artifactName: main-arm64
|
|
runs-on: "['actuated-arm64-8cpu-8gb']"
|
|
scenario: TestRobustness
|
|
lazyfsEnabled: false
|