bamboo-specs-dsl
bamboo-specs-dsl copied to clipboard
A Groovy DSL for writing Bamboo Specs
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)...