Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/issue_tagging.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Update Parent issue

on:
pull_request_target:
pull_request:
types:
- review_requested
pull_request_review:
Expand Down
5 changes: 3 additions & 2 deletions pyperf/pyperf_run
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ PATH="${PATH}:/usr/local/bin"
export PATH
python_pkgs=""
python_exec=""
PYTHON_VERSION=""
PYPERF_VERSION="1.11.0"
#
# To make sure.
Expand Down Expand Up @@ -94,7 +95,7 @@ generate_csv_file()
res_count=0
value_sum=0

$TOOLS_BIN/test_header_info --front_matter --results_file "${1}.csv" --host $to_configuration --sys_type $to_sys_type --tuned $to_tuned_setting --results_version $PYPERF_VERSION --test_name $test_name_run
$TOOLS_BIN/test_header_info --front_matter --results_file "${1}.csv" --host $to_configuration --sys_type $to_sys_type --tuned $to_tuned_setting --results_version "py${PYTHON_VERSION}_$PYPERF_VERSION" --test_name $test_name_run

echo "Test:Avg:Unit" >> "${1}.csv"
while IFS= read -r line
Expand Down Expand Up @@ -271,7 +272,7 @@ done

if [ $to_pbench -eq 0 ]; then
rm -rf pyperformance

PYTHON_VERSION=$(python3 --version | awk '{ print $2 }')
python3 -m pip install pyperformance==$PYPERF_VERSION
if [ $? -ne 0 ]; then
exit_out "python3 -m pip install pyperformance==$PYPERF_VERSION: failed" 1
Expand Down
Loading