DukeOfKirkcaldy

Results 6 issues of DukeOfKirkcaldy

According to the [docs](https://spockframework.org/spock/docs/1.0/data_driven_testing.html) (under 'Syntactic Variations'), a double pipe symbol can be used in a data table to visually separate the inputs from the outputs: ```groovy where: in1 |...

enhancement

I am cross-building on windows for an embedded device and I want to auto-generate the combinations for my build using my own custom compiler, but I can't figure out how...

type: question

Say I have pipeline code that wipes the workspace: ``` ws('customWorkspace') { deleteDir() } ``` I can check that deleteDir() was called: ``` given: Closure deleteDirMock = Mock() helper.registerAllowedMethod('deleteDir', deleteDirMock)...

I am experiencing a lot of inconsistencies between executing pipelines in JenkinsPipelineUnit and on Jenkins itself, due to CPS transformation, as [noted ](https://github.com/jenkinsci/JenkinsPipelineUnit#note-on-cps) in README.md I want to enable this...

I have a Jenkins pipeline which runs on the master Jenkins instance to configure it. This involves a lot of direct use of classes/objects from Jenkins and Jenkins plugins rather...

My understanding is that INTERFACE targets are for when an actual library file does not exist on disc and you just want to group together and add a logical set...

type: look into