added configure conan #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Configure Conan' | |
inputs: | |
conan-version: | |
type: string | |
default: 2.3.1 | |
conan-options: | |
type: string | |
runs: | |
using: "composite" | |
steps: | |
- name: Install conan | |
shell: bash | |
run: | | |
pip3 install "conan==${{ inputs.conan-version }}" | |
- name: configure conan | |
shell: bash | |
run: | | |
# conan profile update is deprecated (https://github.com/conan-io/conan/issues/13205) | |
# and they don't want you to use detect because it is unstable | |
conan profile detect # Force creation of conan directory structure, will be overwritten | |
echo '{% set compiler, version = detect_api.detect_compiler() %}' > ~/.conan2/profiles/default | |
echo '[settings]' >> ~/.conan2/profiles/default | |
echo 'os={{ detect_api.detect_os() }}' >> ~/.conan2/profiles/default | |
echo 'arch={{ detect_api.detect_arch() }}' >> ~/.conan2/profiles/default | |
echo 'build_type=Release' >> ~/.conan2/profiles/default | |
echo 'compiler={{ compiler }}' >> ~/.conan2/profiles/default | |
echo 'compiler.version={{ detect_api.default_compiler_version(compiler, version) }}' >> ~/.conan2/profiles/default | |
echo 'compiler.libcxx=libstdc++11' >> ~/.conan2/profiles/default |