fix: update project_options to v0.36.6 #219
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: ci | |
on: | |
pull_request: | |
release: | |
types: [published] | |
push: | |
branches: | |
- main | |
- develop | |
- master | |
jobs: | |
Test: | |
if: ${{ !contains(github.event.head_commit.message, '[skip ci]') }} | |
runs-on: ${{ matrix.os }} | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
# Recommendations: | |
# * support at least 2 operating systems | |
# * support at least 2 compilers | |
# * make sure all supported configurations for your project are built | |
# | |
# Disable/enable builds in this list to meet the above recommendations | |
# and your own projects needs | |
matrix: | |
os: | |
- ubuntu-22.04 | |
- macos-13 | |
- macos-14 | |
- windows-2022 | |
compiler: | |
# you can specify the version after `-` like "llvm-13.0.0". | |
- llvm | |
- gcc | |
CMAKE_GENERATOR: | |
- "Ninja Multi-Config" | |
CPACK_GENERATOR: | |
- ZIP | |
include: | |
# Inject GCOV variable for gcc | |
- compiler: gcc | |
GCOV: gcov | |
# Inject GCOV variable for llvm | |
- compiler: llvm | |
GCOV: "llvm-cov gcov" | |
# Only to test non-multiconfig builds | |
- os: ubuntu-22.04 | |
compiler: gcc-11 | |
CMAKE_GENERATOR: "Unix Makefiles" | |
GCOV: gcov-11 | |
- os: windows-2022 | |
compiler: msvc | |
CMAKE_GENERATOR: "Visual Studio 17 2022" | |
- os: macos-14 | |
compiler: appleclang | |
# To exclude a specific job from the matrix (e.g llvm on macos-14), you can use this syntax. | |
exclude: | |
- os: macos-14 | |
compiler: llvm | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache | |
uses: actions/cache@v4 | |
with: | |
path: | | |
~/vcpkg | |
./build/vcpkg_installed | |
${{ env.CONAN_USER_HOME }} | |
~/.cache/pip | |
${{ env.HOME }}/.cache/vcpkg/archives | |
${{ env.XDG_CACHE_HOME }}/vcpkg/archives | |
${{ env.LOCALAPPDATA }}\vcpkg\archives | |
${{ env.APPDATA }}\vcpkg\archives | |
key: ${{ runner.os }}-${{ matrix.compiler }}-${{ hashFiles('./vcpkg.json')}}-${{ matrix.CMAKE_GENERATOR }}-${{ hashFiles('**/CMakeLists.txt') }} | |
restore-keys: | | |
${{ runner.os }}-${{ matrix.compiler }}-${{ hashFiles('./vcpkg.json') }}- | |
- name: Setup Cpp | |
uses: aminya/setup-cpp@v1 | |
with: | |
compiler: ${{ matrix.compiler }} | |
vcvarsall: ${{ contains(matrix.os, 'windows' )}} | |
cmake: "3.28.4" | |
ninja: true | |
vcpkg: true | |
ccache: true | |
clangtidy: true | |
task: true | |
cppcheck: true | |
gcovr: 7.2 | |
opencppcoverage: true | |
- name: Initialize CodeQL | |
if: ${{ contains(matrix.os, 'ubuntu') && contains(matrix.compiler, 'llvm') }} | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: "cpp" | |
- name: Test/Coverage | |
run: | | |
task coverage | |
env: | |
CMAKE_GENERATOR: ${{matrix.CMAKE_GENERATOR}} | |
GCOV: ${{matrix.GCOV}} | |
- name: Test release | |
run: | | |
task test_release | |
env: | |
CMAKE_GENERATOR: ${{matrix.CMAKE_GENERATOR}} | |
GCOV: ${{matrix.GCOV}} | |
- name: Install | |
run: | | |
task install | |
env: | |
CMAKE_GENERATOR: ${{matrix.CMAKE_GENERATOR}} | |
CPACK_GENERATOR: ${{matrix.CPACK_GENERATOR}} | |
- name: Perform CodeQL Analysis | |
if: ${{ contains(matrix.os, 'ubuntu') && contains(matrix.compiler, 'llvm') }} | |
uses: github/codeql-action/analyze@v3 | |
- name: Publish Tagged Release | |
uses: softprops/action-gh-release@v2 | |
if: ${{ startsWith(github.ref, 'refs/tags/') && matrix.CPACK_GENERATOR != '' }} | |
with: | |
files: | | |
build/*-*Release*-*.* | |
- name: Publish to codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
flags: ${{ runner.os }} | |
name: ${{ runner.os }}-coverage | |
files: ./build/coverage.xml |