From ddd56ebda04360b5900e626da5f795158788a87a Mon Sep 17 00:00:00 2001 From: Nikita Akatyev Date: Mon, 16 Oct 2023 17:22:37 +0200 Subject: [PATCH] Reproduce without extra build_type https://github.com/conan-io/conan/issues/14945#issuecomment-1764603115 --- repro.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/repro.sh b/repro.sh index 9e9cc03..f1b733e 100644 --- a/repro.sh +++ b/repro.sh @@ -19,7 +19,7 @@ conan list '*:*#*' conan install --requires=boost/1.82.0 --build=missing --build='b2/*' conan list '*:*#*' -# Try different build_type -- get the same error as in first run (as if our version of b2 doesn't exist) -conan install --requires=boost/1.82.0 -s build_type=Debug --build=missing || echo "!!! (rc=$?) Build should have succeeded, but it failed" +# Force-build boost -- get the same error as in first run (as if our version of b2 doesn't exist) +conan install --requires=boost/1.82.0 --build='boost/*' || echo "!!! (rc=$?) Build should have succeeded, but it failed" conan list '*:*#*'