Minor polishing #69
Workflow file for this run
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 : Build | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
check_clang_format: | |
name: "Check C++ style" | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run clang-format style check for C/C++/Protobuf programs. | |
uses: jidicula/[email protected] | |
with: | |
clang-format-version: '16' | |
check-path: '.' | |
#exclude-regex: 'sse2neon.h' | |
editorconfig: | |
name: "Check editorconfig" | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: editorconfig-checker/action-editorconfig-checker@main | |
- run: editorconfig-checker | |
ubuntu_2204: | |
strategy: | |
fail-fast: false | |
matrix: | |
cxx: [20] | |
build_type: ["RelWithDebInfo"] | |
compiler: | |
[ | |
"g++-13", | |
"clang++-17" | |
] | |
name: "Ubuntu 22.04 (${{ matrix.compiler }}, C++${{ matrix.cxx }}, ${{matrix.build_type}})" | |
runs-on: ubuntu-22.04 | |
outputs: | |
id: "${{ matrix.compiler }} (C++${{ matrix.cxx }}, ${{ matrix.build_type }})" | |
steps: | |
- uses: actions/checkout@v3 | |
- name: ccache | |
uses: hendrikmuhs/[email protected] | |
with: | |
key: "ccache-ubuntu2204-${{ matrix.compiler }}-${{ matrix.cxx }}-${{ matrix.build_type }}" | |
max-size: 256M | |
- name: "update APT database" | |
run: sudo apt -q update | |
- name: "Download dependencies" | |
run: sudo apt install cmake ninja-build | |
# # workaround for broken clang on ubuntu runner until https://github.com/actions/runner-images/issues/8659 get fixed | |
# - uses: mjp41/workaround8649@7929373c0fe5caf844d8115adccef39e3b5362e7 | |
- name: Install GCC | |
if: ${{ startsWith(matrix.compiler, 'g++') }} | |
run: sudo apt install -y ${{ matrix.compiler }} | |
- name: Install Clang | |
if: ${{ startsWith(matrix.compiler, 'clang') }} | |
run: | | |
wget https://apt.llvm.org/llvm.sh | |
chmod +x llvm.sh | |
sudo ./llvm.sh all | |
- name: "Cmake configure" | |
run: cmake -S . -B build -G Ninja -D BOXED_CPP_TESTS=ON -D ENABLE_TIDY=ON -DPEDANTIC_COMPILER=ON -D CMAKE_CXX_FLAGS="-Wno-unknown-warning-option -stdlib=libc++" -DCMAKE_CXX_COMPILER=${{ matrix.compiler }} -DCMAKE_CXX_STANDARD=${{ matrix.cxx }} -DCMAKE_BUILD_TYPE=${{matrix.build_type}} | |
- name: "build " | |
run: cmake --build build --parallel 3 | |
- name: "run test" | |
run: ./build/test-boxed-cpp |