-
Notifications
You must be signed in to change notification settings - Fork 0
154 lines (128 loc) · 4.14 KB
/
ci.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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
name: ci
on:
push:
branches:
- main
tags:
- "operator-v*"
- "server-v*"
pull_request:
branches: '*'
jobs:
changed-dirs:
runs-on: ubuntu-latest
outputs:
changeDirs: ${{ steps.outputStep.outputs.changeDirs }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Get changed dirs # To check if any files changed in a directory
id: changeDirsStep
uses: tj-actions/changed-files@v44
with:
dir_names: true
files: |
**
- id: outputStep
run: echo "changeDirs=${{ steps.changeDirsStep.outputs.all_changed_files }}" >> $GITHUB_OUTPUT
server-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.11'
- name: Install dependencies
run: |
pip install -r testing.requirements.txt
pip install -r srv/requirements.txt
- name: Run tests
run: pytest tests/server_tests
operator-tests:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.11'
- name: Setup k3s test cluster
uses: nolar/setup-k3d-k3s@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
run: |
pip install -r testing.requirements.txt
pip install -r opr/requirements.txt
- name: Run tests
run: pytest tests/operator_tests
docker:
runs-on: ubuntu-latest
needs:
- changed-dirs
- server-tests
- operator-tests
if: contains(needs.changed-dirs.outputs.changeDirs, 'opr') || contains(needs.changed-dirs.outputs.changeDirs, 'srv')
strategy:
matrix:
include:
- image: ghcr.io/tu-wien-datalab/config-server-operator
directory: opr
version-pattern: operator-v(\d.+)
- image: ghcr.io/tu-wien-datalab/config-server
directory: srv
version-pattern: server-v(\d.+)
steps:
- name: Docker metadata
id: meta
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: ${{ matrix.image }}
# generate Docker tags based on the following events/attributes
tags: |
type=ref,event=branch
type=match,pattern=${{ matrix.pattern }},group=1
type=sha
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
if: contains(needs.changed-dirs.outputs.changeDirs, matrix.directory)
with:
context: ${{ matrix.directory }}
file: ./${{ matrix.directory }}/Dockerfile
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
helm:
runs-on: ubuntu-latest
needs:
- server-tests
- operator-tests
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Helm
uses: azure/setup-helm@v3
- name: Login to GitHub Container Registry
run: helm registry login ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }}
- name: Package Helm chart
run: helm package chart/config-server-operator --destination ./chart
- name: Push Helm chart to OCI registry
run: helm push ./chart/config-server-operator-*.tgz oci://ghcr.io/tu-wien-datalab