Skip to content

Commit

Permalink
merged
Browse files Browse the repository at this point in the history
  • Loading branch information
xanthospap committed Sep 19, 2024
1 parent 44d2ca9 commit efe3a32
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 23 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/clang-format-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
- name: Run clang-format style check for C/C++/Protobuf programs.
uses: jidicula/[email protected]
with:
clang-format-version: '16'
clang-format-version: '17'
check-path: ${{ matrix.path }}
fallback-style: 'LLVM' # optional
10 changes: 10 additions & 0 deletions .github/workflows/cpp-linux-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,19 @@ jobs:
- name: "Test"
run: ctest --test-dir build

- name: "prepare build (debug), gcc"
run: cmake -S . -B build -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug
- name: "build"
run: cmake --build build --target all --config Debug -- -j4

- name: "prepare build (production/standard), clang++"
run: cmake -S . -B build -G "Unix Makefiles" -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_BUILD_TYPE=Release
- name: "build"
run: cmake --build build --target all --config Release -- -j4
- name: "Test"
run: ctest --test-dir build

- name: "prepare build (debug), clang++"
run: cmake -S . -B build -G "Unix Makefiles" -DCMAKE_BUILD_TYPE=Debug -DCMAKE_CXX_COMPILER=clang++
- name: "build"
run: cmake --build build --target all --config Debug -- -j4
22 changes: 0 additions & 22 deletions .travis.yml

This file was deleted.

0 comments on commit efe3a32

Please sign in to comment.