forked from COVESA/vehicle_signal_specification
-
Notifications
You must be signed in to change notification settings - Fork 0
81 lines (68 loc) · 2.41 KB
/
buildcheck.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
name: Standard Build Check
on:
push:
pull_request:
workflow_dispatch:
jobs:
buildtest:
continue-on-error: ${{ matrix.experimental }}
strategy:
matrix:
vss-tools-version: [v4, 4.2.1]
experimental: [false]
include:
- vss-tools-version: master
experimental: true
name: Build Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install vss-tools dependencies
run: |
python -V
python -m pip --quiet --no-input install --upgrade pip
python -m pip --quiet --no-input install --upgrade wheel
pip install pytest
# idlc currently used both during python test and later in this script
pip install cyclonedds
pip install git+https://github.com/COVESA/vss-tools@${{ matrix.vss-tools-version }}
sudo apt install -y protobuf-compiler
echo done!
- name: Test mandatory targets
run: |
make mandatory_targets
- name: Test that ddsidl is correct
run: |
idlc vss_rel_*.idl
- name: Prepare for CSV check
uses: actions/setup-go@v5
with:
go-version: 'stable'
cache: false
- name: Test that CSV generated by vss-tools is correct
run: |
# Install csvlint to check compliance with https://datatracker.ietf.org/doc/html/rfc4180
go install github.com/Clever/csvlint/cmd/csvlint@latest
csvlint vss_rel_*.csv
- name: Test optional targets. NOTE - always succeeds
run: |
make -k optional_targets || true
- name: Install hugo
env:
HUGO_VER : 0.129.0
run: |
curl -LO https://github.com/gohugoio/hugo/releases/download/v${HUGO_VER}/hugo_${HUGO_VER}_linux-amd64.deb
sudo dpkg -i hugo_${HUGO_VER}_linux-amd64.deb
- name: Make docs
run: |
hugo -s ./docs-gen
- name: Deploy docs
# Only deploy docs if this was a push to master
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages # The branch the action should deploy to.
folder: docs # The folder the action should deploy.
commit-message: Auto-deploy docs built from commit ${{ github.sha }}