logger: simplify debug log function name (#1043) #2136
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: C++ | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
env: | |
POAC_TERM_COLOR: always | |
CXX: g++-13 | |
permissions: | |
contents: read | |
jobs: | |
clang-tidy: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup dependencies | |
uses: ./.github/actions/setup-ubuntu-deps | |
- name: Build Poac | |
run: make RELEASE=1 | |
- name: Install clang-tidy | |
run: | | |
wget https://apt.llvm.org/llvm.sh | |
chmod +x ./llvm.sh | |
sudo ./llvm.sh 18 | |
sudo apt-get install -y clang-tidy-18 | |
- name: poac tidy | |
run: ./build-out/poac tidy --verbose | |
env: | |
POAC_TIDY: clang-tidy-18 | |
format: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup dependencies | |
uses: ./.github/actions/setup-ubuntu-deps | |
- name: Build Poac | |
run: make RELEASE=1 | |
- name: Install clang-format | |
run: | | |
wget https://apt.llvm.org/llvm.sh | |
chmod +x ./llvm.sh | |
sudo ./llvm.sh 18 | |
sudo apt-get install -y clang-format-18 | |
- name: poac fmt | |
run: ./build-out/poac fmt --check --verbose --exclude srcOld --exclude testsOld | |
env: | |
POAC_FMT: clang-format-18 | |
lint: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup dependencies | |
uses: ./.github/actions/setup-ubuntu-deps | |
- name: Build Poac | |
run: make RELEASE=1 | |
- name: Install cpplint | |
run: sudo apt-get install -y cpplint | |
- name: poac lint | |
run: ./build-out/poac lint --verbose --exclude srcOld --exclude testsOld |