-
Notifications
You must be signed in to change notification settings - Fork 1
83 lines (67 loc) · 2.12 KB
/
ci.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
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
71
72
73
74
75
76
77
78
79
80
81
82
83
name: Lint and Test Charts
on:
pull_request:
paths:
- 'charts/**'
jobs:
helm-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up helm-docs
uses: envoy/install-helm-docs@v1.0.0
with:
version: 1.11.0
- name: Run helm-docs
run: helm-docs && git diff --exit-code
lint-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Helm
uses: azure/setup-helm@v4
with:
version: v3.12.2
- uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.6.1
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct --config ct.yaml list-changed)
if [[ -n "$changed" ]]; then
echo "::set-output name=changed::true"
fi
if [[ "$changed" == *"rollout-app"* ]]; then
echo "::set-output name=rollout::true"
fi
if [[ "$changed" == *"simple-workflow"* ]]; then
echo "::set-output name=simple-workflow::true"
fi
- name: Run chart-testing (lint)
run: ct --config ct.yaml lint
- name: Create kind cluster
uses: helm/kind-action@v1.10.0
if: steps.list-changed.outputs.changed == 'true'
- name: Install Argo Rollouts Controller
if: steps.list-changed.outputs.rollout == 'true'
run: |
make -C charts/rollout-app install_rollouts
- name: Install Argo Workflow Controller
if: steps.list-changed.outputs.simple-workflow == 'true'
run: |
make -C charts/simple-workflow install_argo_workflow
- name: Install CRDs
if: steps.list-changed.outputs.changed == 'true'
run: make crds
- name: Wait
if: steps.list-changed.outputs.changed == 'true'
run: sleep 1
- name: Run chart-testing (install)
run: ct --config ct.yaml install