Skip to content

static_filter_map fixed for msvc #99

static_filter_map fixed for msvc

static_filter_map fixed for msvc #99

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install GCC 12
run: sudo apt install -y gcc-12 g++-12
- name: Install Conan 2.0
run: pip install conan
- name: Autodetect a default conan profile
run: conan profile detect --name=default
- name: Modify the default conan profile
run: python .github/workflows/edit_conan_profile.py $(conan profile path default) settings.compiler=gcc settings.compiler.version=12 settings.compiler.cppstd=20 buildenv.CC=/usr/bin/gcc-12 buildenv.CXX=/usr/bin/g++-12
- name: Build and run unit tests
run: make BUILD_TYPE=default