File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -43,14 +43,16 @@ for it in $SAMPLE_RECIPES; do
4343 set +e
4444
4545 # Create the package with the specified version
46- output=$( conan create . --version=${version} --build=missing 2>&1 )
46+ output=$( conan create . --version=${version} 2>&1 )
4747 # Accept some errors as non-fatal
4848 if [ $? -ne 0 ]; then
4949 echo " WARNING: conan create failed for $recipe_dir "
5050 if echo " $output " | grep -q " ERROR: There are invalid packages" ; then
5151 echo " WARNING: Invalid packages found, skipping the build."
5252 elfi echo " $output " | grep -q " ERROR: Version conflict" ; then
5353 echo " WARNING: Version conflict, skipping the build."
54+ elfi echo " $output " | grep -q " ERROR: Missing binary" ; then
55+ echo " WARNING: Missing binary, skipping the build."
5456 else
5557 echo " ERROR: Fatal error during conan create command execution:"
5658 echo " $output "
You can’t perform that action at this time.
0 commit comments