-
Notifications
You must be signed in to change notification settings - Fork 1
52 lines (50 loc) · 1.69 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
42
43
44
45
46
47
48
49
50
51
52
name: Run antithesis (triggerable)
on:
workflow_dispatch:
inputs:
namada_docker_tag:
description: 'The docker tag of the namada docker images'
required: true
type: string
scenario_tester_docker_tag:
description: 'The docker tag of the scenario tester image'
required: true
type: string
timeouts:
type: choice
description: Timeout definition
options:
- short
- medium
- long
faults:
type: choice
description: Faults definition
options:
- baseline
- minimal
run_type:
type: choice
description: RunType definition
options:
- default_antithesis
- determinator__2000_200
- default_fuzzer
jobs:
antithesis:
runs-on: [ubuntu-latest]
steps:
- uses: antithesishq/[email protected]
with:
config_image: namada-config:${{ github.event.inputs.namada_docker_tag }}
notebook_name: namada
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 }},namada-scenario-tester:${{ github.event.inputs.scenario_tester_docker_tag }},check:latest
additional_parameters: |-
custom.timeouts=${{ github.event.inputs.timeouts }}
custom.faults=${{ github.event.inputs.faults }}
custom.run_type=${{ github.event.inputs.run_type }}
custom.testing_config=namada-default