File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 46
46
make -f Makefile.setup PIP_INSTALL_ARGS="" install-python-deps
47
47
- name : Configure Conan
48
48
run : |
49
- conan profile new --detect default &&
50
- conan profile update settings.build_type=${{ matrix.build_type }} default &&
51
- conan profile update settings.compiler.libcxx=libstdc++11 default &&
49
+ make setup-conan &&
52
50
# NOTE: Boost 1.69 has a bug (fixed in 74fb0a26099bc51d717f5f154b37231ce7df3e98) that
53
51
# prevents GCC >= 11 from interoperation, so disable the server for this case.
54
52
# (The server feature depends on cloe-oak, which *currently* depends on Boost <= 1.69.)
Original file line number Diff line number Diff line change @@ -75,6 +75,9 @@ setup-conan:
75
75
conan profile update settings.compiler.libcxx=libstdc++11 ${CONAN_PROFILE}; \
76
76
conan profile update settings.build_type=RelWithDebInfo ${CONAN_PROFILE}; \
77
77
fi
78
+ if ! conan config get general.default_build_profile >/dev/null 2>&1; then \
79
+ conan config set general.default_build_profile=default; \
80
+ fi
78
81
if ! conan config get general.revisions_enabled >/dev/null 2>&1; then \
79
82
conan config set general.revisions_enabled=True; \
80
83
fi
You can’t perform that action at this time.
0 commit comments