-
Notifications
You must be signed in to change notification settings - Fork 2
133 lines (113 loc) · 4.02 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
# Copyright (c) 2023 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
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:
lint-job:
name: "Run linters"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install deps
run: |
pip install mypy
pip install types-requests
- name: Run Linters
uses: ./.github/actions/pre-commit-action
unit-test:
name: "Run unit tests"
runs-on: ubuntu-22.04
container: ghcr.io/eclipse-velocitas/devcontainer-base-images/python:v0.1
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install required packages
run: |
pip install -r vehicle-model-lifecycle/requirements.txt
pip install -r vehicle-model-lifecycle/test/requirements.txt
- name: unit test
shell: bash
run: |
pytest --rootdir=./vehicle-model-lifecycle/test \
--override-ini junit_family=xunit1 \
--junit-xml=./results/UnitTest/junit.xml \
--cov . \
--cov-report=xml:results/CodeCoverage/cobertura-coverage.xml \
--cov-branch \
./vehicle-model-lifecycle/test
- 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: 5monkeys/cobertura-action@master
with:
path: results/CodeCoverage/cobertura-coverage.xml
minimum_coverage: 80
show_line: true
show_branch: true
fail_below_threshold: false
run-integration-tests:
name: Run Integration Test
runs-on: ubuntu-22.04
container: ghcr.io/eclipse-velocitas/devcontainer-base-images/${{ matrix.language }}:v0.1
strategy:
matrix:
language: ["python", "cpp"]
component: ["setup", "grpc-service-support", "vehicle-model-lifecycle"]
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Checkout template repo
uses: actions/checkout@v3
with:
repository: eclipse-velocitas/vehicle-app-${{ matrix.language }}-template
path: test/${{ matrix.language }}/repo
- name: Replace Velocitas Json Content
run: |
cp -f test/${{ matrix.language }}/.velocitas.json test/${{ matrix.language }}/repo
- name: Update velocitas json
uses: ./.github/actions/update-velocitas-json
with:
project_path: test/${{ matrix.language }}/repo
- name: Run integration tests
run: |
export VELOCITAS_TEST_LANGUAGE=${{ matrix.language }}
export VELOCITAS_TEST_ROOT=test/${{ matrix.language }}/repo
python -m pip install -r ./${{ matrix.component }}/test/requirements.txt
python -m pip install -r ./${{ matrix.component }}/requirements.txt
pytest ./${{ matrix.component }}
- name: Reset .velocitas.json to latest template state
run: |
cd test/${{ matrix.language }}/repo
git checkout .velocitas.json app/AppManifest.json
- name: Fix dubious ownership
run: |
git config --global --add safe.directory $( pwd )