Skip to content

Various updates to generate doxygen tag file #35

Various updates to generate doxygen tag file

Various updates to generate doxygen tag file #35

Workflow file for this run

##======================================================================================================================
## KUMI - Compact C++20 Tuple Toolbox
## Copyright : KUMI Project Contributors
## SPDX-License-Identifier: BSL-1.0
##======================================================================================================================
name: KUMI Integration Tests
on:
push:
branches:
- main
concurrency:
group: kumi-integration-${{ github.ref }}
cancel-in-progress: true
jobs:
install:
runs-on: [ubuntu-latest]
container:
image: ghcr.io/jfalcou/compilers:v8
strategy:
fail-fast: false
steps:
- name: Fetch current branch
uses: actions/[email protected]
- name: Install KUMI from checkout
run: |
mkdir build && cd build
cmake -G Ninja .. -DKUMI_BUILD_TEST=OFF -DCMAKE_CXX_COMPILER=clang++
ninja install
- name: Run Sample CMake
run: |
mkdir install && cd install
cmake ../test/integration/install-test -G Ninja
ninja && ctest --verbose
fetch-content:
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
runs-on: [ubuntu-latest]
container:
image: ghcr.io/jfalcou/compilers:v8
strategy:
fail-fast: false
steps:
- name: Fetch current branch
uses: actions/[email protected]
- name: Compile using FetchContent
run: |
git config --global --add safe.directory /__w/kumi/kumi
mkdir install && cd install
cmake ../test/integration/fetch-test -G Ninja -DGIT_BRANCH=${BRANCH_NAME} -DKUMI_BUILD_TEST=OFF -DCMAKE_CXX_COMPILER=clang++
ninja && ctest --verbose
cpm:
env:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
runs-on: [ubuntu-latest]
container:
image: ghcr.io/jfalcou/compilers:v8
strategy:
fail-fast: false
steps:
- name: Fetch current branch
uses: actions/[email protected]
- name: Compile using CPM
run: |
git config --global --add safe.directory /__w/kumi/kumi
mkdir install && cd install
cmake ../test/integration/cpm-test -G Ninja -DGIT_BRANCH=${BRANCH_NAME} -DCMAKE_CXX_COMPILER=clang++ -DKUMI_BUILD_TEST=OFF
ninja && ctest --verbose