Hi, I'm not sure if this is a bug. Our build shows success but upon checking the logs it shows unable to publish artifact. I expect this to fail.
Bamboo version:6.2.2
Unable to publish artifact |
Hi Adrian,
Thanks for your question!
Yes, it is a known bug. Bug report
But, I can suggest you a workaround to use a script task with the following code:
cnt=`ls | wc -l`
echo "Count value is: "$cnt
if [ $cnt -lt 1 ]
then
echo "failing build as no artifacts found"
exit -1
fi
This code will check if there is any file present in the current build working directory or no. If not then "exit -1" will fail the build.
Please note: The above code is bash compatible and is only for reference. You could change this code as per your requirement to look for specific files as well.
Thanks,
Robhit
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.