-
Notifications
You must be signed in to change notification settings - Fork 7
40 lines (36 loc) · 1.4 KB
/
scheduled-regression-clickhouse-head.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: 🗓 Scheduled ClickHouse head
run-name: 🗓 Scheduled ClickHouse head
on:
workflow_dispatch:
#Run At 00:00 (UTC) on Sunday, Tuesday, and Thursday
schedule:
- cron: "0 0 * * 6,2,4"
jobs:
clickhouse-head-x86-with-analyzer-zookeeper:
uses: ./.github/workflows/reusable-workflow-x86.yml
with:
package: "docker://clickhouse/clickhouse-server:head-alpine"
extra_args: '--with-analyzer'
artifact_name: clickhouse-head-x86-with-analyzer-zookeeper
secrets: inherit
clickhouse-head-arm-with-analyzer-zookeeper:
uses: ./.github/workflows/reusable-workflow-arm.yml
with:
package: "docker://clickhouse/clickhouse-server:head-alpine"
extra_args: '--with-analyzer'
artifact_name: clickhouse-head-arm-with-analyzer-zookeeper
secrets: inherit
clickhouse-head-x86-with-analyzer-keeper:
uses: ./.github/workflows/reusable-workflow-x86.yml
with:
package: "docker://clickhouse/clickhouse-server:head-alpine"
extra_args: '--with-analyzer --use-keeper'
artifact_name: clickhouse-head-x86-with-analyzer-keeper
secrets: inherit
clickhouse-head-arm-with-analyzer-keeper:
uses: ./.github/workflows/reusable-workflow-arm.yml
with:
package: "docker://clickhouse/clickhouse-server:head-alpine"
extra_args: '--with-analyzer --use-keeper'
artifact_name: clickhouse-head-arm-with-analyzer-keeper
secrets: inherit