Skip to content

Commit b79422e

Browse files
committed
bench.yaml: remove timeout input
1 parent 2857d69 commit b79422e

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

.github/workflows/bench.yaml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ on:
2020
required: false
2121
type: string
2222
default: "3.10"
23-
timeout:
24-
description: "Timeout for Timer.autorange()"
25-
required: false
26-
default: 1800
27-
type: number
23+
# timeout:
24+
# description: "Timeout for Timer.autorange()"
25+
# required: false
26+
# default: 1800
27+
# type: number
2828
cpp-binding-framework:
2929
required: false
3030
description: "The framework used to build easygraph's C++ binding"
@@ -78,11 +78,11 @@ on:
7878
options:
7979
- "3.10"
8080
- "3.9"
81-
timeout:
82-
description: "Timeout for Timer.autorange()"
83-
required: false
84-
default: "1800"
85-
type: string
81+
# timeout:
82+
# description: "Timeout for Timer.autorange()"
83+
# required: false
84+
# default: "1800"
85+
# type: string
8686
cpp-binding-framework:
8787
required: false
8888
description: "The framework used to build easygraph's C++ binding"
@@ -175,25 +175,25 @@ jobs:
175175
if: inputs.benchScriptSet == 'normal'
176176
working-directory: easygraph-bench
177177
run: |
178-
python3 ./entrypoint_normal.py -D --timeout '${{ inputs.timeout }}'
178+
python3 ./entrypoint_normal.py -D
179179
180180
- name: benchmark (large)
181181
if: inputs.benchScriptSet == 'large'
182182
working-directory: easygraph-bench
183183
run: |
184-
python3 ./entrypoint_large.py -D --timeout '${{ inputs.timeout }}'
184+
python3 ./entrypoint_large.py -D
185185
186186
- name: benchmark (coauthorship)
187187
if: inputs.benchScriptSet == 'coauthorship'
188188
working-directory: easygraph-bench
189189
run: |
190-
python3 ./bench_coauthorship.py -D --timeout '${{ inputs.timeout }}'
190+
python3 ./bench_coauthorship.py -D
191191
192192
- name: benchmark (stub)
193193
if: inputs.benchScriptSet == 'stub'
194194
working-directory: easygraph-bench
195195
run: |
196-
python3 ./entrypoint_stub.py -D --timeout '${{ inputs.timeout }}'
196+
python3 ./entrypoint_stub.py -D
197197
198198
- name: benchmark (stub-fast)
199199
if: inputs.benchScriptSet == 'stub-fast'

0 commit comments

Comments
 (0)