-
Notifications
You must be signed in to change notification settings - Fork 26
270 lines (228 loc) · 8.36 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
# This file is maintained by velocitas CLI, do not modify manually. Change settings in .velocitas.json
# Copyright (c) 2022 Robert Bosch GmbH and Microsoft Corporation
#
# This program and the accompanying materials are made available under the
# terms of the Apache License, Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0.
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
#
# SPDX-License-Identifier: Apache-2.0
name: CI workflow
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
on:
workflow_dispatch:
push:
# Run only on branches/commits and not tags
branches:
- main
pull_request:
branches:
- main
jobs:
unit-tests:
runs-on: ubuntu-22.04
container: ghcr.io/eclipse-velocitas/devcontainer-base-images/python:v0.1.4
name: Run unit tests and linters
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: de-vri-es/setup-git-credentials@v2
with:
credentials: https://user:${{ secrets.GITHUB_TOKEN }}@github.com/
- name: Init velocitas project
run: |
velocitas init
- name: Install required packages
run: |
pip install -r requirements.txt
pip install -r app/requirements-links.txt
pip install -r app/requirements.txt
pip install -r app/tests/requirements.txt
- name: Fix dubious ownership
run: |
git config --global --add safe.directory $( pwd )
- name: Run Linters
uses: ./.github/actions/pre-commit-action
- name: Clone Release Documentation Action repository
uses: actions/checkout@v3
with:
repository: eclipse-velocitas/release-documentation-action
path: "./.github/release-documentation/actions"
- name: unit test
shell: bash
run: |
pytest --rootdir=./app/tests/unit \
--override-ini junit_family=xunit1 \
--junit-xml=./results/UnitTest/junit.xml \
--cov ./app/tests/unit \
--cov-report=xml:results/CodeCoverage/cobertura-coverage.xml \
--cov-branch ./app/tests/unit \
--cov-config=setup.cfg
- name: Publish Test Report
uses: mikepenz/action-junit-report@v3
if: always()
with:
report_paths: ./results/UnitTest/junit.xml
summary: true
update_check: true
annotate_only: true
- uses: irongut/[email protected]
with:
filename: results/CodeCoverage/cobertura-coverage.xml
badge: true
format: markdown
hide_complexity: true
indicators: true
output: both
- run: |
cat code-coverage-results.md >> $GITHUB_STEP_SUMMARY
- name: Package unit test files
uses: ./.github/release-documentation/actions/package
with:
name: "UnitTest"
type: "UnitTest"
schema: "JUnit"
sourcePath: ./results/UnitTest/junit.xml
packagePath: ./results/Documentation/renderer
- name: Package code coverage files
uses: ./.github/release-documentation/actions/package
with:
name: "CodeCoverage"
type: "CodeCoverage"
schema: "Cobertura"
sourcePath: results/CodeCoverage
packagePath: results/Documentation/renderer
- name: Upload test results as artifacts
uses: actions/upload-artifact@v3
if: always()
with:
name: "test-results"
path: |
results/Documentation/renderer/*
initialize-matrix:
runs-on: ubuntu-latest
name: Setting up build matrix
outputs:
deployment-matrix: ${{ steps.export-deployment-matrix.outputs.deployment-matrix }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Get matrix data
id: export-deployment-matrix
run: |
SITE_PACKAGES=$(python -m site --user-site)
sed -i "s|SITE_PACKAGES|$SITE_PACKAGES|g" ./app/AppManifest.json
MATRIX=$(cat ./app/AppManifest.json | tr '\n' ' ')
echo "deployment-matrix=$MATRIX" >> $GITHUB_OUTPUT
build-image-amd64:
uses: ./.github/workflows/build-docker-image.yml
needs: [initialize-matrix]
with:
platform: amd64
deployment-matrix-str: ${{ needs.initialize-matrix.outputs.deployment-matrix }}
run-integration-tests:
name: Run Integration Tests (${{ matrix.component.name }})
runs-on: ubuntu-22.04
needs: [initialize-matrix, build-image-amd64]
strategy:
matrix:
component: ${{ fromJson(needs.initialize-matrix.outputs.deployment-matrix) }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
- uses: de-vri-es/setup-git-credentials@v2
with:
credentials: https://user:${{ secrets.GITHUB_TOKEN }}@github.com/
- name: Init velocitas project
run: |
sudo curl -L https://github.com/eclipse-velocitas/cli/releases/latest/download/velocitas-linux-x64 -o /usr/bin/velocitas
sudo chmod +x /usr/bin/velocitas
velocitas init
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Homebrew
id: set-up-homebrew
uses: Homebrew/actions/setup-homebrew@master
- name: Install required packages
run: |
pip install -r ./app/requirements.txt
pip install -r ./app/requirements-links.txt
pip install -r ./app/tests/requirements.txt
brew install k3d kubernetes-cli helm dapr/tap/dapr-cli
- name: Configure K3D cluster and install runtime containers in K3D cluster
run: velocitas exec runtime-k3d up
- id: github-repository-name-case-adjusted
name: Prepare repository name in lower case for docker upload. This supports repository names in mixed case
uses: ASzc/change-string-case-action@v5
with:
string: ${{ github.repository }}
- name: Download stored image from artifacts
uses: actions/download-artifact@v3
env:
VAPP_IMAGE: ${{ matrix.component.name }}-amd64
with:
name: ${{ env.VAPP_IMAGE }}
path: ./.github/scripts/
- name: Deploy images
working-directory: ./.github/scripts
run: ./deploy_image_from_artifact.sh
- name: Run Python integration tests
shell: bash
env:
VDB_PORT: 30555
MQTT_PORT: 31883
run: |
pip install -r app/tests/requirements.txt
pytest ./app/tests/integration --override-ini junit_family=xunit1 --junit-xml=./results/IntTest/junit.xml
- name: Publish Test Report
uses: mikepenz/action-junit-report@v3
if: always()
with:
report_paths: ./results/IntTest/junit.xml
summary: true
update_check: true
annotate_only: true
- name: Clone release documentation action repository
uses: actions/checkout@v3
with:
repository: eclipse-velocitas/release-documentation-action
path: "./.github/actions"
- name: Package integration test result files
uses: ./.github/actions/package
with:
name: "IntegrationTest"
type: "UnitTest"
schema: "JUnit"
sourcePath: ./results/IntTest/junit.xml
packagePath: ./results/Documentation/renderer
- name: Upload integration test results as artifacts
uses: actions/upload-artifact@v3
if: always()
with:
name: "test-results"
path: |
results/Documentation/renderer/*
devcontainer-check:
runs-on: ubuntu-22.04
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Build and run dev container task
uses: devcontainers/[email protected]
with:
runCmd: velocitas upgrade --dry-run
push: never