In Java specs it is possible to override the build hanging settings in the job using the custom map builder like so:
new AllOtherPluginsConfiguration()
.configuration(new MapBuilder()
.put("custom", new MapBuilder()
.put("buildHangingConfig", new MapBuilder()
.put("minutesBetweenLogs", "1")
.put("minutesQueueTimeout", "20")
.put("multiplier", "1")
.put("enabled", "true")
.build())
.build())
.build())
Is this possible to be done in yaml specs using the miscellaneous plugins section? Or any another section?
https://docs.atlassian.com/bamboo-specs-docs/6.10.4/specs.html?yaml#miscellaneous-plugins
other:
clean-working-dir: true
build-hang-config: #is there any such key?
I can't seem to find any documentation that gives any keys for this setting.
Hello @Jedidiah Koh ,
It's not supported yet. Please raise an issue at https://jira.atlassian.com/browse/BAM
I see, thanks! At least now I know I don't need to keep searching.
Also it seems your hyperlink has accidentally included the ending whitespace/newline characters.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Alexey Chystoprudov I see that the above created issue has 8.1.1 as fix-version, but it is not explained anywhere how to actually implement this in yaml specs.
Can you give an example?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.