From ac31850cdcb04a6ab399b8c9c0c3f7e963fb6972 Mon Sep 17 00:00:00 2001 From: Carlos Gomes Martinho Date: Mon, 24 Feb 2020 13:38:11 +0100 Subject: [PATCH] chore: use cpp 11 by default --- .github/workflows/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 30fbc69..bac67c0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -45,6 +45,12 @@ jobs: working-directory: ${{runner.workspace}}/build run: conan profile new default --detect + - name: Use cpp 11 (Linux) + if: startsWith(runner.os, 'Linux') + run: | + conan profile update settings.compiler.libcxx=libstdc++11 default + shell: bash + - name: Install conan dependencies working-directory: ${{runner.workspace}}/build run: conan install $GITHUB_WORKSPACE --build missing