Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Build success even though [Unable to publish artifact] on logs

Adrian_Quiambao March 20, 2018

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.

Screen Shot 2018-03-21 at 10.38.17 AM.png

Bamboo version:6.2.2 

Unable to publish artifact

 

1 answer

1 accepted

0 votes
Answer accepted
robhit
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
March 21, 2018

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

Adrian_Quiambao March 22, 2018

Great.  I'll try this one. Thanks! Appreciate it :)

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events