Dqlite Jepsen tests - expected pass #21638
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dqlite Jepsen tests - expected pass | |
on: | |
push: | |
paths-ignore: | |
- 'Dockerfile' | |
pull_request: | |
paths-ignore: | |
- 'Dockerfile' | |
schedule: | |
- cron: '0 */1 * * *' | |
workflow_dispatch: | |
inputs: | |
dqlite-repo: | |
description: dqlite repo | |
default: canonical/dqlite | |
dqlite-ref: | |
description: dqlite branch or ref | |
default: master | |
jobs: | |
expected-pass: | |
uses: ./.github/workflows/test-build-run.yml | |
with: | |
workloads: > | |
[ 'append', 'bank', 'set' ] | |
nemeses: > | |
[ 'none', 'partition', 'kill', 'stop', 'disk', 'member', | |
'partition,stop', 'partition,kill', 'partition,member', | |
'packet,stop', 'pause', 'partition,disk', 'pause,disk' ] | |
disk: > | |
[ '0', '1' ] | |
jepsen-dqlite-repo: ${{ github.repository }} | |
jepsen-dqlite-ref: ${{ github.ref }} | |
dqlite-repo: ${{ inputs.dqlite-repo || 'canonical/dqlite' }} | |
dqlite-ref: ${{ inputs.dqlite-ref || 'master' }} |