Skip to content

Commit d37be12

Browse files
authored
Merge pull request #10577 from everpcpc/fix-ci
chore(ci): fix typo in comment pr for benchmark
2 parents 35f38d5 + 60be8b9 commit d37be12

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/actions/benchmark_cloud/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ runs:
106106

107107
- name: Remove warehouse
108108
if: always()
109-
shell: bash
110109
continue-on-error: true
110+
shell: bash
111111
run: |
112112
bendsql cloud warehouse delete benchmark-${{ inputs.run_id }}

.github/actions/benchmark_local/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ runs:
6969
- name: Clean test data
7070
working-directory: benchmark/clickbench
7171
if: always()
72+
continue-on-error: true
7273
shell: bash
7374
run: |
7475
bendsql query <"${{ inputs.dataset }}/clear.sql"

.github/actions/create_check_status/action.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,8 @@ runs:
4141
with:
4242
github-token: ${{ inputs.github_token }}
4343
script: |
44+
let summary = `${process.env.param_summary}
45+
[View Details](https://github.com/datafuselabs/databend/actions/runs/${context.runId})`;
4446
let data = {
4547
owner: context.repo.owner,
4648
repo: context.repo.repo,
@@ -50,10 +52,10 @@ runs:
5052
details_url: process.env.param_url,
5153
output: {
5254
title: process.env.param_title,
53-
summary: process.env.param_summart,
55+
summary: summary,
5456
},
5557
};
56-
if (process.env.param_status === 'completed'') {
58+
if (process.env.param_status === 'completed') {
5759
data.conclusion = process.env.param_conclusion;
5860
}
5961
await github.rest.checks.create(data);

0 commit comments

Comments
 (0)