Skip to content

Commit a335f02

Browse files
committed
fix
1 parent 81e4b46 commit a335f02

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/regression-reusable-suite.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,7 @@ jobs:
9595
--local
9696
--collect-service-logs
9797
--output ${{ inputs.output_format }}
98-
--parallel ${{ vars.PARALLEL }}
99-
--attr project="${GITHUB_REPOSITORY}" project.id="${GITHUB_REPOSITORY_ID}" user.name="${GITHUB_ACTOR}" version="${{ fromJson(inputs.workflow_config).custom_data.version.string }}" package="${clickhouse_path}" repository="https://github.com/Altinity/clickhouse-regression" commit.hash="$(git rev-parse HEAD)" job.name=$GITHUB_JOB job.retry=$GITHUB_RUN_ATTEMPT job.url="${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}" arch="$(uname -i)"
98+
--attr project="${GITHUB_REPOSITORY}" project.id="${GITHUB_REPOSITORY_ID}" user.name="${GITHUB_ACTOR}" version="${{ fromJson(inputs.workflow_config).custom_data.version.string }}" package="$clickhouse_path" repository="https://github.com/Altinity/clickhouse-regression" commit.hash="$(git rev-parse HEAD)" job.name=$GITHUB_JOB job.retry=$GITHUB_RUN_ATTEMPT job.url="${GITHUB_SERVER_URL}/${GITHUB_REPOSITORY}/actions/runs/${GITHUB_RUN_ID}" arch="$(uname -i)"
10099
--cicd
101100
--log raw.log
102101
${{ inputs.flags != 'none' && inputs.flags || ''}}
@@ -157,10 +156,9 @@ jobs:
157156
158157
- name: 🧪 Run ${{ env.SUITE }} suite
159158
id: run_suite
160-
run: |
161-
EXITCODE=0
162-
python3 -u ${{ env.SUITE }}/${{ env.SUITE_EXECUTABLE }}
163-
--clickhouse ${clickhouse_path}
159+
run: python3
160+
-u ${{ env.SUITE }}/${{ env.SUITE_EXECUTABLE }}
161+
--clickhouse ${{ env.clickhouse_path }}
164162
${{ env.REGRESSION_ARGS }}
165163
${{ env.args }} || EXITCODE=$?;
166164
.github/add_link_to_logs.sh

0 commit comments

Comments
 (0)