-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (39 loc) · 1.61 KB
/
run.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
37
38
39
40
41
name: Run antithesis (triggerable)
on:
workflow_dispatch:
inputs:
namada_genesis_docker_tag:
description: 'The docker tag of the namada genesis docker images'
required: true
type: string
namada_docker_tag:
description: 'The docker tag of the namada docker images'
required: true
type: string
workload_tag:
description: 'The docker tag of the workload docker images'
required: true
type: string
duration:
description: Duration of the experiment
faults:
type: boolean
description: Enable faults
jobs:
antithesis:
runs-on: [ubuntu-latest]
steps:
- uses: antithesishq/[email protected]
with:
config_image: namada-config:${{ github.event.inputs.namada_docker_tag }}
notebook_name: namada2
tenant: heliax
username: ${{ secrets.ANTITHESIS_USER_NAME }}
password: ${{ secrets.ANTITHESIS_PASSWORD }}
github_token: ${{ secrets.GITHUB_TOKEN }}
images: namada-genesis:${{ github.event.inputs.namada_genesis_docker_tag }},namada:${{ github.event.inputs.namada_docker_tag }},workload:${{ github.event.inputs.workload_tag }},check:latest,masp-indexer-block-filter:master,masp-indexer-webserver:master,masp-indexer-chain:master
email_recipients: |
[email protected],heliax-antithesis-aaaammxjv6zgaqxcdury4ktshq@antithesisgroup.slack.com
additional_parameters: |
custom.duration=${{ github.event.inputs.duration }}
custom.faults=${{ github.event.inputs.faults }}