We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7f84dcc commit 4de7147Copy full SHA for 4de7147
.github/workflows/kind_antrea.yml
@@ -1,6 +1,10 @@
1
name: Kind Antrea Cyclonus
2
on:
3
workflow_dispatch:
4
+ inputs:
5
+ cyclonus_args:
6
+ required: false
7
+ default: "generate include --conflict --job-timeout-seconds 2 --server-protocol=tcp,udp"
8
# schedule:
9
# See https://crontab.guru/#0_0_*_*_0:
10
# At 00:00 on Sunday.
@@ -14,4 +18,4 @@ jobs:
14
18
- uses: actions/checkout@v2
15
19
- name: Run Cyclonus
16
20
working-directory: hack/kind
17
- run: CNI=antrea RUN_FROM_SOURCE=true ./run-cyclonus.sh
21
+ run: CNI=antrea RUN_FROM_SOURCE=true FROM_SOURCE_ARGS="${{ github.event.inputs.cyclonus_args }}" ./run-cyclonus.sh
0 commit comments