It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
Hi,
I'm evaluating Bamboo for my company. I am trying to build an android project (IDE is Android Studio 2.1.3) with a gradle wrapper. I have introduced a compilation error in the code (e.g. missing ";" after a statement). The log file states that the build failed due to this error. However, Bamboo updates that the build was successful in the dashboard, job summary and even in JIRA.
The build.gradle of my application is as follows:
buildscript {
repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:2.1.3' // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } allprojects { repositories { jcenter() } } task clean(type: Delete) { delete rootProject.buildDir } gradle.buildFinished { buildResult -> if(buildResult.failure) { return 1; } }
I found https://ruijarimba.wordpress.com/2016/02/07/powershell-scripts-running-on-bamboo-dont-return-the-correct-exit-code/ which suggests to add the following code in the powershell.
trap
{
write-output $_
exit 1
}
Can someone please help me on this issue?
I figured out that in bamboo when I change the interpreter of the inline script from Windows Powershell to /bin/sh or cmd.exe, bamboo build failed and the error was detected in the logs.
image2016-9-15 11:56:43.png
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Atlassian Community! I'm Teresa, the Product Marketing Manager for Jira Service Desk Server at Atlassian. I'm excited to announce two exciting releases for Jira Service De...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.