The pipeline iterates a fixed list of profiles for every Conan reference, it computes the packageID for each profile and discard duplicates. Then it builds the packages for the remaining profiles and upload them to JFrog ConanCenter once the pull-request is merged.
Because duplicated packageIDs are discarded, the pipeline iterates the profiles always in the same order and the profiles selected to build when there is a duplicate follow some rules:
- Static linkage (option
shared=False
) is preferred over dynamic linking. - On Windows,
MT/MTd
runtime linkage goes beforeMD/MDd
linkage. - Optimized binaries (
build_type=Release
) are preferred over its debug counterpart. - Older compiler versions are considered first.
- In Linux, GCC is iterated before Clang.
Currently, given the following supported platforms and configurations we are generating 136 different binary packages for a C++ library and 88 for a C library.
For more information see conan-io/conan-docker-tools
-
Python: 3.7.9
-
CMake: 3.21.6
-
WinSDK: 10.0.20348
WinSDK version is rolled periodically as discussed previously. Please open an issue in case it needs to be updated.
-
Compilers: Visual Studio:
- 2019 (19.29.30148)
-
Release (MT/MD) and Debug (MTd, MDd)
-
Architectures: x86_64
-
Build types: Release, Debug
-
Runtimes: MT/MD (Release), MTd/MDd (Debug)
-
Options:
- Shared, Static (option
"shared": [True, False]
in the recipe when available) - Header Only (option
"header_only": [True, False]
if available)
- Shared, Static (option
⚠️ The profile with the optionshared=True
and runtimeMT/MTd
is not built.
- Python: 3.7.17
- CMake: 3.15.7, 3.18.6 (same version expected after all use new docker images)
- Compilers:
- GCC versions: 5, 7, 9, 11
- Clang versions: 13
- C++ Standard Library (
libcxx
):- GCC compiler:
libstdc++
,libstdc++11
- Clang compiler:
libstdc++
,libc++
- GCC compiler:
- Architectures: x86_64
- Build types: Release, Debug
- Options:
- Shared, Static (option
"shared": [True, False]
in the recipe when available) - Header Only (option
"header_only": [True, False]
is only added with the value True)
- Shared, Static (option
- Python: 3.7.12
- CMake: 3.20.1
- Compilers: Apple-clang versions 13.0.0
- Macos SDK versions (for each apple-clang version respectively): 11.3
- Macos deployment target (
minos
): 11.0 - C++ Standard Library (
libcxx
):libc++
- Architectures: armv8
- Build types: Release, Debug
- Options:
- Shared, Static (option
"shared": [True, False]
in the recipe when available) - Header Only (option
"header_only": [True, False]
is only added with the value True)
- Shared, Static (option