Skip to content

Upgrade conan

Upgrade conan #70

Workflow file for this run

name: CMake
on: [push]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
build:
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
include:
- os: windows-latest
- os: ubuntu-latest
- os: macos-11
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- run: pip3 install wheel conan==2.5.0
- name: Create conan profile
run: conan profile detect
- name: Build
run: conan build . --build missing -s:a=build_type=${{env.BUILD_TYPE}}
- name: Package
working-directory: build
run: |
cmake --install . --prefix ../dist
- name: Test
working-directory: build
run: |
ctest -C ${{env.BUILD_TYPE}} --output-on-failure
git diff --exit-code