Skip to content

Commit 865976c

Browse files
committed
[Test] (config) Remove argument 'test_os' about runtime OS.
1 parent 3768667 commit 865976c

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

.github/workflows/organize_and_generate_test_cov_reports.yaml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
# Organize all the testing coverage reports. (it would save reports by 'actions/upload-artifact@v3').
55
#
66
# Workflow input parameters:
7-
# * test_os: The OS runtime environment in. If it has multiple values, please separate it by comma ','. In generally, it only has 2 options: 'macos' and 'ubuntu'.
87
# * test_type: The testing type. In generally, it only has 2 options: 'unit-test' and 'integration-test'.
98
#
109
# Workflow running output:
@@ -25,11 +24,6 @@ on:
2524
description: "The testing type. In generally, it only has 2 options: 'unit-test' and 'integration-test'."
2625
type: string
2726
required: true
28-
test_os:
29-
description: "The OS runtime environment in. If it has multiple values, please separate it by comma ','. In generally,
30-
it only has 2 options: 'macos' and 'ubuntu'."
31-
type: string
32-
required: true
3327

3428

3529
jobs:
@@ -57,7 +51,7 @@ jobs:
5751
pip3 install coverage
5852
5953
- name: Combine all testing coverage data files with test type and runtime OS, and convert to XML format file finally
60-
run: bash ./scripts/ci/combine_coverage_reports.sh ${{ inputs.test_type }} ${{ inputs.test_os }} true
54+
run: bash ./scripts/ci/combine_coverage_reports.sh ${{ inputs.test_type }}
6155

6256
- name: Upload testing coverage report (.coverage)
6357
uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)