2020-04-20 20:18:40 +02:00
|
|
|
name: cpp_lint
|
|
|
|
|
|
|
|
# lint on c/cpp changes or workflow changes
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths:
|
|
|
|
- 'lib/**.[ch]'
|
|
|
|
- 'lib/**.cpp'
|
|
|
|
- 'src/**.[ch]'
|
|
|
|
- 'src/**.cpp'
|
|
|
|
- '**/CMakeLists.txt'
|
|
|
|
- 'cmake/Modules/**'
|
|
|
|
- 'util/ci/**'
|
|
|
|
- '.github/workflows/**.yml'
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- 'lib/**.[ch]'
|
|
|
|
- 'lib/**.cpp'
|
|
|
|
- 'src/**.[ch]'
|
|
|
|
- 'src/**.cpp'
|
|
|
|
- '**/CMakeLists.txt'
|
|
|
|
- 'cmake/Modules/**'
|
|
|
|
- 'util/ci/**'
|
|
|
|
- '.github/workflows/**.yml'
|
|
|
|
|
|
|
|
jobs:
|
2020-05-02 12:52:51 +02:00
|
|
|
|
2021-01-24 00:48:22 +01:00
|
|
|
# clang_format:
|
2022-05-01 14:44:48 +02:00
|
|
|
# runs-on: ubuntu-20.04
|
2021-01-24 00:48:22 +01:00
|
|
|
# steps:
|
2022-05-01 14:44:48 +02:00
|
|
|
# - uses: actions/checkout@v3
|
2021-01-24 00:48:22 +01:00
|
|
|
# - name: Install clang-format
|
|
|
|
# run: |
|
2022-05-01 14:44:48 +02:00
|
|
|
# sudo apt-get update
|
|
|
|
# sudo apt-get install -y clang-format-9
|
2021-01-24 00:48:22 +01:00
|
|
|
#
|
|
|
|
# - name: Run clang-format
|
|
|
|
# run: |
|
|
|
|
# source ./util/ci/clang-format.sh
|
|
|
|
# check_format
|
|
|
|
# env:
|
|
|
|
# CLANG_FORMAT: clang-format-9
|
2020-04-20 20:18:40 +02:00
|
|
|
|
|
|
|
clang_tidy:
|
2022-05-01 14:44:48 +02:00
|
|
|
runs-on: ubuntu-20.04
|
2020-04-20 20:18:40 +02:00
|
|
|
steps:
|
2022-05-01 14:44:48 +02:00
|
|
|
- uses: actions/checkout@v3
|
2020-05-02 12:52:51 +02:00
|
|
|
- name: Install deps
|
2020-04-20 20:18:40 +02:00
|
|
|
run: |
|
|
|
|
source ./util/ci/common.sh
|
2022-05-01 14:44:48 +02:00
|
|
|
install_linux_deps clang-tidy-9
|
2020-04-20 20:18:40 +02:00
|
|
|
|
|
|
|
- name: Run clang-tidy
|
|
|
|
run: |
|
|
|
|
./util/ci/clang-tidy.sh
|