-
Notifications
You must be signed in to change notification settings - Fork 0
45 lines (42 loc) · 1.57 KB
/
main.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
on: [push, pull_request]
defaults:
run:
shell: bash
jobs:
spell:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- run: make install_deps_common
- run: make spell
jammy_ccws:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
repository: asherikov/ccws
- uses: actions/checkout@v4
with:
path: src/intrometry
- uses: actions/checkout@v4
with:
repository: asherikov/thread_supervisor
path: src/thread_supervisor
- uses: actions/checkout@v4
with:
repository: asherikov/ariles
ref: pkg_ws_2
path: src/ariles
- run: make bp_install_build BUILD_PROFILE=reldebug
- run: make bp_install_build BUILD_PROFILE=scan_build
- run: make bp_install_build BUILD_PROFILE=static_checks
- run: mkdir -p src/.ccws
- run: echo "intrometry/pjmsg_mcap/src/3rdparty/" >> src/.ccws/static_checks.exceptions.paths
- run: make BUILD_PROFILE=static_checks
- run: make dep_install PKG=intrometry_pjmsg_mcap
- run: make dep_install PKG=intrometry_pjmsg_topic
- run: make intrometry BUILD_PROFILE=scan_build
- run: make intrometry
- run: make test PKG=intrometry_frontend
- run: make test PKG=intrometry_pjmsg_mcap
- run: make test PKG=intrometry_pjmsg_topic