mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
---
|
|
name: Robustness Nightly
|
|
permissions: read-all
|
|
on:
|
|
# schedules always run against the main branch, hence we have to create separate jobs
|
|
# with individual checkout actions for each of the active release branches
|
|
schedule:
|
|
- cron: '25 9 * * *' # runs every day at 09:25 UTC
|
|
jobs:
|
|
main:
|
|
# GHA has a maximum amount of 6h execution time, we try to get done within 3h
|
|
uses: ./.github/workflows/robustness-template.yaml
|
|
with:
|
|
etcdBranch: main
|
|
count: 100
|
|
testTimeout: 200m
|
|
artifactName: main
|
|
main-arm64:
|
|
uses: ./.github/workflows/robustness-template-arm64.yaml
|
|
with:
|
|
etcdBranch: main
|
|
count: 100
|
|
testTimeout: 200m
|
|
artifactName: main-arm64
|
|
runs-on: "['self-hosted', 'Linux', 'ARM64']"
|
|
release-35:
|
|
uses: ./.github/workflows/robustness-template.yaml
|
|
with:
|
|
etcdBranch: release-3.5
|
|
count: 100
|
|
testTimeout: 200m
|
|
artifactName: release-35
|
|
release-34:
|
|
uses: ./.github/workflows/robustness-template.yaml
|
|
with:
|
|
etcdBranch: release-3.4
|
|
count: 100
|
|
testTimeout: 200m
|
|
artifactName: release-34
|