-
Notifications
You must be signed in to change notification settings - Fork 19
59 lines (47 loc) · 1.5 KB
/
main-ci.yml
File metadata and controls
59 lines (47 loc) · 1.5 KB
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
name: Lint and test chart installation
on: pull_request
jobs:
lint-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install Helm
uses: azure/setup-helm@v4
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.7.0
- name: Run chart-testing (lint)
run: ct lint --config ct/ct.yaml
installation-test:
runs-on: ubuntu-latest
needs: lint-test
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Install Helm
uses: azure/setup-helm@v4
- name: Set up chart-testing
uses: helm/chart-testing-action@v2.7.0
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --config ct/ct.yaml)
if [[ -n "$changed" ]]; then
echo "::set-output name=changed::true"
fi
- name: Set up k3d cluster
uses: nolar/setup-k3d-k3s@v1
with:
version: v1.27
github-token: ${{ secrets.GITHUB_TOKEN }}
if: steps.list-changed.outputs.changed == 'true'
- name: Prepare CI env before installing epinio
run: make prepare-ci-env
if: steps.list-changed.outputs.changed == 'true'
- name: Run chart-testing
run: ct install --debug --config ct/ct-install.yaml --namespace epinio
if: steps.list-changed.outputs.changed == 'true'