-
Notifications
You must be signed in to change notification settings - Fork 15
70 lines (67 loc) · 2.13 KB
/
test.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: "units-test"
on:
# works for mannual, in case of github agent updated.
# we can run mannually to see if it can be fixed by update version of
# - kubectl
# - k8s cluster provider's
workflow_dispatch:
pull_request:
push:
branches:
- main
- 'releases/*'
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master
env:
SHELLCHECK_OPTS: -x
# test local cluster without prometheus grafana
test_local_cluster_without_prometheus_grafana:
needs:
- shellcheck
runs-on: ubuntu-latest
strategy:
matrix:
# I suppose we'd better update version pre kepler release.
# keep from current default version and latest version.
cluster_provider: [kind, microshift]
# So far we just have a single version for microshift
# in the future, we should considering have a local test for each cluster providers
steps:
- uses: actions/checkout@v3
- name: start from local
run: |
export CLUSTER_PROVIDER=${{matrix.cluster_provider}}
./main.sh up
- name: verify
run: |
export CLUSTER_PROVIDER=${{matrix.cluster_provider}}
./verify.sh
# test local cluster with prometheus grafana
test_local_cluster_with_prometheus_grafana:
runs-on: ubuntu-latest
needs: test_local_cluster_without_prometheus_grafana
strategy:
matrix:
# I suppose we'd better update version pre kepler release.
# keep from current default version and latest version.
cluster_provider: [kind, microshift]
prometheus_operator_version: [v0.12.0]
steps:
- uses: actions/checkout@v3
- name: start from local
run: |
export PROMETHEUS_ENABLE=true
export PROMETHEUS_OPERATOR_VERSION=${{matrix.prometheus_operator_version}}
export GRAFANA_ENABLE=true
export CLUSTER_PROVIDER=${{matrix.cluster_provider}}
./main.sh up
- name: verify
run: |
export CLUSTER_PROVIDER=${{matrix.cluster_provider}}
./verify.sh