Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[sail] Bump to 0.9.0-rc2, migrate to Conan V2 #14871
[sail] Bump to 0.9.0-rc2, migrate to Conan V2 #14871
Changes from all commits
174681e
52368da
34f1bad
d6d97f8
c51ac74
e568f6d
b67b8b8
42daa05
8b4a60b
6f803d3
8253f0d
0e17327
2342849
6943c5f
de8628c
fdf7e56
d1732e5
9828277
32e6dba
c0412d8
34c1c76
f3ca32f
5845240
6381acb
31238a6
a3e5730
cfdc360
a57aabd
d7dd2ff
22b986f
ab21436
aedc499
4be1691
54d618d
54026de
c8378ff
b40dd8e
a30971a
bf7f479
f9bc2c9
f7dd4a3
3256b14
0efcc6c
6bb710c
75681ff
986e7ca
c7bb959
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
This file was deleted.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it possible to avoid doing this outside of C3I? I know the Qt 6 recipe implements some special validation logic with
if os.getenv('NOT_ON_C3I', '0') == '0':
to only evaluate in C3I. This allows local devs to set the variable and override this behavior.Not sure if this should be done, but I wanted to ask. @prince-chrismc Any thoughts?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Environment should be totally avoided on Conan 2.0, so conan config will be the best and safest approach. About Qt, that variable should be replace by a configuration too. As you should know, env vars are fragile, they can be easily replace, also, depending the user/profile they may change too, so it's not safe using them.