├── README.md └── vars ├── echoPipeline.groovy ├── echoPipeline.txt ├── helloArgs.groovy ├── helloArgs.txt ├── helloWorld.groovy └── helloWorld.txt /README.md: -------------------------------------------------------------------------------- 1 | # demo-shared-pipeline -------------------------------------------------------------------------------- /vars/echoPipeline.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbyaccident/demo-shared-pipeline/HEAD/vars/echoPipeline.groovy -------------------------------------------------------------------------------- /vars/echoPipeline.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbyaccident/demo-shared-pipeline/HEAD/vars/echoPipeline.txt -------------------------------------------------------------------------------- /vars/helloArgs.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbyaccident/demo-shared-pipeline/HEAD/vars/helloArgs.groovy -------------------------------------------------------------------------------- /vars/helloArgs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devbyaccident/demo-shared-pipeline/HEAD/vars/helloArgs.txt -------------------------------------------------------------------------------- /vars/helloWorld.groovy: -------------------------------------------------------------------------------- 1 | def call() { 2 | println 'Hello World!' 3 | } -------------------------------------------------------------------------------- /vars/helloWorld.txt: -------------------------------------------------------------------------------- 1 | Prints 'Hello World!' --------------------------------------------------------------------------------