This is an automated email from the ASF dual-hosted git repository.
changchen pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-gluten.git
The following commit(s) were added to refs/heads/main by this push:
new 5c3545aab4 [GLUTEN-7814][CH] Support trigger Gluten ClickHouse CI on
ARM (#7815)
5c3545aab4 is described below
commit 5c3545aab4b9e33bc5752326152ac38d0b1954ea
Author: Wenzheng Liu <[email protected]>
AuthorDate: Tue Nov 5 15:24:25 2024 +0800
[GLUTEN-7814][CH] Support trigger Gluten ClickHouse CI on ARM (#7815)
---
.github/workflows/clickhouse_be_trigger.yml | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/clickhouse_be_trigger.yml
b/.github/workflows/clickhouse_be_trigger.yml
index 153fa391b8..a45dfc8a94 100644
--- a/.github/workflows/clickhouse_be_trigger.yml
+++ b/.github/workflows/clickhouse_be_trigger.yml
@@ -47,9 +47,16 @@ jobs:
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
+ const issueNumber = context.payload.number;
+ let body;
+ if (issueNumber % 10 === 0) {
+ body = "Run Gluten ClickHouse CI on ARM";
+ } else {
+ body = "Run Gluten Clickhouse CI on x86";
+ }
await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
- issue_number: context.payload.number,
- body: "Run Gluten Clickhouse CI"
+ issue_number: issueNumber,
+ body: body
});
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]