Developers' manual #268
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Unit Tests | |
on: [push, pull_request] | |
jobs: | |
mixed_tests: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.10.x | |
- name: Install dependencies | |
run: | | |
python -V | |
pip install -r requirements.txt | |
- name: Install ifex module | |
run: | | |
python setup.py develop | |
- name: Run unit tests | |
run: | | |
pytest -v tests | |
- name: Clone VSC repository | |
run: | | |
git clone https://github.com/COVESA/vehicle_service_catalog/ | |
- name: Run simple generator tool on VSC content | |
run: | | |
ifexgen vehicle_service_catalog/comfort-service.yml -d simple | |
- name: Run DTDL template | |
run: | | |
ifexgen vehicle_service_catalog/comfort-service.yml -d dtdl > dtdl.out | |
- name: Run Protobuf template and verify output is correct Proto | |
run: | | |
sudo apt install -y protobuf-compiler | |
ifexgen vehicle_service_catalog/comfort-service.yml -d protobuf > comfort-service.proto | |
mkdir tmp | |
protoc --cpp_out=tmp comfort-service.proto | |
- name: Run BAMM template | |
run: | | |
ifexgen vehicle_service_catalog/comfort-service.yml -d sds-bamm > bamm.out | |
- name: Run D-Bus generator | |
run: | | |
ifexgen_dbus vehicle_service_catalog/comfort-service.yml >d-bus.out | |
cat d-bus.out | |