Bamboo build successful for code with compilation errors

Gangani Geethika Wijewardena September 12, 2016

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
}
But still did not work for me.

Can someone please help me on this issue?

2 answers

0 votes
Gangani Geethika Wijewardena September 14, 2016

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

0 votes
Krystian Brazulewicz
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
September 13, 2016

Please contact Bamboo Support, don't forget to provide the screenshots of your task configuration.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events