Skip to content

Commit

Permalink
#2 Add GitHub Workflow
Browse files Browse the repository at this point in the history
Signed-off-by: vityaman <[email protected]>
  • Loading branch information
vityaman committed Aug 27, 2024
1 parent 404b88d commit 17a431f
Showing 1 changed file with 63 additions and 0 deletions.
63 changes: 63 additions & 0 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
name: CMake

on:
push:
branches: [trunk]
pull_request:
branches: [trunk]

jobs:
build:
strategy:
matrix:
cmake_build_type: [Asan, Release]
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install dependencies
run: |
wget -O - https://apt.llvm.org/llvm-snapshot.gpg.key | sudo apt-key add -
sudo add-apt-repository "deb http://apt.llvm.org/noble/ llvm-toolchain-noble-18 main"
sudo apt update
sudo apt install build-essential
sudo apt install clang-format-18 clang-tidy-18
sudo ln -s $(which clang-format-18) /usr/local/bin/clang-format
sudo ln -s $(which clang-tidy-18) /usr/local/bin/clang-tidy
- name: Setup ccache
uses: hendrikmuhs/[email protected]
with:
create-symlink: true
key: ${{ github.job }}-${{ matrix.cmake_build_type }}

- name: Clang-Format
run: |
find source test -iname '*.hpp' -o -iname '*.cpp' \
| xargs clang-format -Werror --dry-run --fallback-style=Google --verbose
- name: Configure
run: |
mkdir -p build
cd build
cmake \
-DBST_DEVELOPER=ON \
-DCMAKE_BUILD_TYPE=${{ matrix.cmake_build_type }} \
..
- name: Build
working-directory: ${{github.workspace}}/build
run: make

- name: Unit Test
working-directory: ${{github.workspace}}/build
run: ./test/bst-test

- name: Clang-Tidy on sources
if: matrix.cmake_build_type == 'Release'
run: |
find source -iname '*.hpp' -o -iname '*.cpp' \
| xargs clang-tidy -p build/compile_commands.json

0 comments on commit 17a431f

Please sign in to comment.