-
Notifications
You must be signed in to change notification settings - Fork 6
42 lines (36 loc) · 982 Bytes
/
e2e.yaml
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
41
42
name: E2E
on:
workflow_dispatch:
inputs:
chart:
type: choice
description: Chart Name
required: true
options:
- greptimedb-cluster
- greptimedb-standalone
jobs:
e2e:
runs-on: ubuntu-latest
if: ${{ github.repository == 'GreptimeTeam/helm-charts' }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Helm
uses: azure/setup-helm@v3
with:
version: v3.12.1
- name: Create kind cluster
uses: helm/[email protected]
with:
wait: 120s
- name: Deploy greptimedb-cluster
if: ${{ github.event.inputs.chart == 'greptimedb-cluster' }}
shell: bash
run: |
make e2e-greptimedb-cluster
- name: Deploy greptimedb-standalone
if: ${{ github.event.inputs.chart == 'greptimedb-standalone' }}
shell: bash
run: |
make e2e-greptimedb-standalone