-
Notifications
You must be signed in to change notification settings - Fork 1
32 lines (30 loc) · 1.2 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
name: Run antithesis (triggerable)
on:
workflow_dispatch:
inputs:
namada_docker_tag:
description: 'The docker tag of the namada docker images'
required: true
type: string
duration:
description: The duration of the experiment
faults:
description: If faults needs to be introduced
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_docker_tag }},namada:${{ github.event.inputs.namada_docker_tag }},workload:latest,check:latest
email_recipients: |
[email protected],heliax-antithesis-aaaammxjv6zgaqxcdury4ktshq@antithesisgroup.slack.com
additional_parameters: |
custom.duration=${{ github.event.inputs.duration }}
custom.faults=${{ github.event.inputs.faults }}