Skip to content

doc: remove conan stuff #47

doc: remove conan stuff

doc: remove conan stuff #47

Workflow file for this run

# name: C++ Cross-Platform Build
# on: push
# defaults:
# run:
# shell: bash
# jobs:
# # template: remove if not using clang-format
# clang-format-check:
# name: clang-format check
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout
# - name: Run clang-format
# uses: jidicula/clang-format-action
# with:
# clang-format-version: '18'
# build:
# strategy:
# fail-fast: false
# matrix:
# os: [ ubuntu-latest, macos-latest, windows-latest ]
# mode: [ "Debug", "Release" ]
# # cxx-std: [ 17, 20, 23 ] # template: enable if multiple std version testing is wanted
# include:
# - os: ubuntu-latest
# #cxx-override: CC=gcc-10 CXX=g++-10
# - os: macos-latest
# - os: windows-latest
# pdb-path: ./build/*.pdb
# runs-on: ${{ matrix.os }}
# steps:
# - uses: actions/checkout
# with:
# submodules: 'recursive'
# # template: uncomment if using std::execution stuff for gcc or clang
# # - name: apt dependencies
# # run: sudo apt update && sudo apt install -y --no-install-recommends libtbb-dev
# # if: startsWith(matrix.os, 'ubuntu')
# # template: add -DCMAKE_CXX_STANDARD=${{ matrix.cxx-std }} to cmake command if multiple std version testing is wanted
# - name: Configure
# run: |
# mkdir build
# cd build
# ${{ matrix.cxx-override }} \
# cmake -DCMAKE_BUILD_TYPE=${{ matrix.mode }} -DCPPTEMPLATE_BUILD_TESTS=${{ matrix.mode == 'Debug' }} ..
# - name: Build
# working-directory: build
# run: cmake --build . --config ${{ matrix.mode }}
# - name: Run tests
# if: ${{ matrix.mode == 'Debug' }}
# working-directory: build/tests
# run: ctest
# # template: uncomment and fill paths to upload useful binaries or other files as artifacts
# # - name: Upload Artifacts
# # uses: actions/upload-artifact@v2
# # with:
# # name: ${{ runner.os }}-${{ matrix.mode }}.zip
# # path: |
# # ${{ matrix.pdb-path }}
# # if-no-files-found: warn
# # retention-days: 30