-
Notifications
You must be signed in to change notification settings - Fork 4
36 lines (34 loc) · 994 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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' }}