2021-04-18 21:51:47 +02:00
|
|
|
# Syntax reference https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions
|
|
|
|
# Environment reference https://help.github.com/en/actions/reference/virtual-environments-for-github-hosted-runners
|
|
|
|
name: clang-tidy
|
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
2022-08-26 23:25:07 +02:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2021-04-18 21:51:47 +02:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
2022-05-31 19:55:57 +02:00
|
|
|
runs-on: ubuntu-22.04
|
2021-04-18 21:51:47 +02:00
|
|
|
|
2022-02-01 17:26:52 +01:00
|
|
|
env:
|
|
|
|
QT_VERSION: 5.15.2
|
|
|
|
|
2021-04-18 21:51:47 +02:00
|
|
|
steps:
|
2022-10-11 19:50:59 +02:00
|
|
|
- uses: actions/checkout@v3
|
2021-04-18 21:51:47 +02:00
|
|
|
|
|
|
|
- name: Install missing software
|
|
|
|
run: |
|
2022-08-23 21:40:31 +02:00
|
|
|
sudo apt-get update
|
|
|
|
sudo apt-get install -y cmake make
|
|
|
|
sudo apt-get install -y libpcre3-dev
|
|
|
|
sudo apt-get install -y libffi7 # work around missing dependency for Qt install step
|
|
|
|
|
|
|
|
- name: Install clang
|
|
|
|
run: |
|
|
|
|
wget https://apt.llvm.org/llvm.sh
|
|
|
|
chmod +x llvm.sh
|
2022-08-25 15:28:39 +02:00
|
|
|
sudo ./llvm.sh 15
|
|
|
|
sudo apt-get install -y clang-tidy-15
|
2021-04-24 20:20:09 +02:00
|
|
|
|
2022-02-01 17:26:52 +01:00
|
|
|
- name: Cache Qt ${{ env.QT_VERSION }}
|
|
|
|
id: cache-qt
|
|
|
|
uses: actions/cache@v1 # not v2!
|
|
|
|
with:
|
|
|
|
path: ../Qt
|
|
|
|
key: Linux-QtCache-${{ env.QT_VERSION }}-qtcharts
|
|
|
|
|
|
|
|
- name: Install Qt ${{ env.QT_VERSION }}
|
2021-10-31 20:15:32 +01:00
|
|
|
uses: jurplel/install-qt-action@v2
|
|
|
|
with:
|
2022-02-01 17:26:52 +01:00
|
|
|
version: ${{ env.QT_VERSION }}
|
2021-10-31 20:15:32 +01:00
|
|
|
modules: 'qtcharts'
|
2022-02-01 17:26:52 +01:00
|
|
|
cached: ${{ steps.cache-qt.outputs.cache-hit }}
|
2021-04-18 21:51:47 +02:00
|
|
|
|
2022-09-27 20:03:25 +02:00
|
|
|
- name: Verify clang-tidy configuration
|
|
|
|
run: |
|
|
|
|
clang-tidy-15 --verify-config
|
|
|
|
|
2021-04-18 21:51:47 +02:00
|
|
|
- name: Prepare CMake
|
|
|
|
run: |
|
2022-09-24 22:14:04 +02:00
|
|
|
cmake -S . -B cmake.output -G "Unix Makefiles" -DHAVE_RULES=On -DBUILD_TESTS=On -DBUILD_GUI=On -DWITH_QCHART=On -DENABLE_CHECK_INTERNAL=On -DCMAKE_GLOBAL_AUTOGEN_TARGET=On -DCPPCHK_GLIBCXX_DEBUG=Off
|
2022-05-15 12:42:29 +02:00
|
|
|
env:
|
2022-08-25 15:28:39 +02:00
|
|
|
CC: clang-15
|
|
|
|
CXX: clang++-15
|
2021-04-18 21:51:47 +02:00
|
|
|
|
2022-01-04 15:45:36 +01:00
|
|
|
- name: Prepare CMake dependencies
|
2021-04-18 21:51:47 +02:00
|
|
|
run: |
|
|
|
|
# make sure the precompiled headers exist
|
2022-05-15 12:42:29 +02:00
|
|
|
make -C cmake.output/lib cmake_pch.hxx.pch
|
|
|
|
make -C cmake.output/test cmake_pch.hxx.pch
|
2022-01-04 15:45:36 +01:00
|
|
|
# make sure the auto-generated GUI sources exist
|
2021-10-31 20:15:32 +01:00
|
|
|
make -C cmake.output autogen
|
2022-01-04 15:45:36 +01:00
|
|
|
|
|
|
|
- name: Clang-Tidy
|
|
|
|
run: |
|
2021-04-18 21:51:47 +02:00
|
|
|
cmake --build cmake.output --target run-clang-tidy 2> /dev/null
|