bamboo-specs-dsl icon indicating copy to clipboard operation
bamboo-specs-dsl copied to clipboard

A Groovy DSL for writing Bamboo Specs

Results 2 bamboo-specs-dsl issues
Sort by recently updated
recently updated
newest added

Hi, Bamboo seems not having support for code coverage reports except clover. On Job level in tab "Miscellaneous" you can adjust clover to take a "clover.xml" and it then is...

For example a job with docker runner in java specs ``` new Job("Default Job", new BambooKey("DR")) .tasks(new VcsCheckoutTask() .description("Checkout Default Repository") .checkoutItems(new CheckoutItem().defaultRepository()) .cleanCheckout(true), new ScriptTask() .description("build and push") .location(ScriptTaskProperties.Location.FILE)...

enhancement