-
Notifications
You must be signed in to change notification settings - Fork 0
96 lines (94 loc) · 2.26 KB
/
test.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
84
85
86
87
88
89
90
91
92
93
94
95
96
name: Test
# Put 'on' in quotes to avoid YAML parsing error
"on":
# Enable manual triggering
workflow_dispatch: {}
# Run on commits to main branch
push:
branches:
- main
# Run only on changes to relevant files
paths:
- .github/workflows/test.yaml
- src/**
- tests/**
- .sourceignore
# Run also on pull requests to main branch
pull_request:
branches:
- main
# Run only on changes to relevant files
paths:
- .github/workflows/test.yaml
- src/**
- tests/**
- .sourceignore
jobs:
test:
name: Test
# Pin version of Ubuntu to avoid breaking changes
runs-on: ubuntu-22.04
# Use reasonable timeout to avoid stuck workflows
timeout-minutes: 60
strategy:
matrix:
cluster: [main]
permissions:
# Needed to checkout code
contents: read
steps:
- name: Free disk space
uses: jlumbroso/[email protected]
- name: Checkout code
uses: actions/[email protected]
- name: Setup Kubernetes
uses: helm/[email protected]
with:
version: v0.22.0
cluster_name: ${{ matrix.cluster }}
kubectl_version: v1.29.2
- name: Setup Flux
uses: fluxcd/flux2/[email protected]
with:
version: v2.2.3
- name: Install Flux in cluster
run: >
flux
install
--version
v2.2.3
- name: Add source to Flux
run: >
flux
create
source
git
main
--url
'https://github.com/${{ github.repository }}'
--commit
'${{ github.event.pull_request.head.sha || github.sha }}'
--username
'${{ github.actor }}'
--password
'${{ github.token }}'
--ignore-paths
'!/tests/'
- name: Add Kustomization to Flux
run: >
flux
create
kustomization
main
--source
main
--path
'tests/clusters/ci/${{ matrix.cluster }}'
--wait
--timeout
30m
- name: Debug failures
if: failure()
run: |
kubectl get all --all-namespaces
flux get all --all-namespaces