├── .gitattributes ├── README.md ├── basic-jcasc ├── Dockerfile ├── README.md ├── build.sh ├── jenkins.yaml ├── plugins.txt └── run.sh ├── from-freestyle-jobs-to-pipeline-with-jobdsl.pdf ├── hello-pipeline-inline ├── README.md └── seed-hello-pipeline-inline.groovy ├── hello-world ├── README.md └── hello-world.groovy ├── jobdsl-iterative ├── README.md ├── iteration0.groovy ├── iteration1.groovy ├── iteration2.groovy ├── iteration3.groovy ├── iteration4.groovy ├── iteration5.groovy ├── iteration6.groovy └── iteration7.groovy ├── jobdsl └── README.md ├── seed-hello-world-external ├── README.md ├── hello_world_external.groovy └── seed-hello-world-external.groovy └── seed-hello-world-inline ├── README.md └── seed-hello-world-inline.groovy /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/.gitattributes -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/README.md -------------------------------------------------------------------------------- /basic-jcasc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/basic-jcasc/Dockerfile -------------------------------------------------------------------------------- /basic-jcasc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/basic-jcasc/README.md -------------------------------------------------------------------------------- /basic-jcasc/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | docker build -t figaw/jcasc-basic:2.222.3 . --no-cache 4 | -------------------------------------------------------------------------------- /basic-jcasc/jenkins.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/basic-jcasc/jenkins.yaml -------------------------------------------------------------------------------- /basic-jcasc/plugins.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/basic-jcasc/plugins.txt -------------------------------------------------------------------------------- /basic-jcasc/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/basic-jcasc/run.sh -------------------------------------------------------------------------------- /from-freestyle-jobs-to-pipeline-with-jobdsl.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/from-freestyle-jobs-to-pipeline-with-jobdsl.pdf -------------------------------------------------------------------------------- /hello-pipeline-inline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/hello-pipeline-inline/README.md -------------------------------------------------------------------------------- /hello-pipeline-inline/seed-hello-pipeline-inline.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/hello-pipeline-inline/seed-hello-pipeline-inline.groovy -------------------------------------------------------------------------------- /hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/hello-world/README.md -------------------------------------------------------------------------------- /hello-world/hello-world.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/hello-world/hello-world.groovy -------------------------------------------------------------------------------- /jobdsl-iterative/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/jobdsl-iterative/README.md -------------------------------------------------------------------------------- /jobdsl-iterative/iteration0.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/jobdsl-iterative/iteration0.groovy -------------------------------------------------------------------------------- /jobdsl-iterative/iteration1.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/jobdsl-iterative/iteration1.groovy -------------------------------------------------------------------------------- /jobdsl-iterative/iteration2.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/jobdsl-iterative/iteration2.groovy -------------------------------------------------------------------------------- /jobdsl-iterative/iteration3.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/jobdsl-iterative/iteration3.groovy -------------------------------------------------------------------------------- /jobdsl-iterative/iteration4.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/jobdsl-iterative/iteration4.groovy -------------------------------------------------------------------------------- /jobdsl-iterative/iteration5.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/jobdsl-iterative/iteration5.groovy -------------------------------------------------------------------------------- /jobdsl-iterative/iteration6.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/jobdsl-iterative/iteration6.groovy -------------------------------------------------------------------------------- /jobdsl-iterative/iteration7.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/jobdsl-iterative/iteration7.groovy -------------------------------------------------------------------------------- /jobdsl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/jobdsl/README.md -------------------------------------------------------------------------------- /seed-hello-world-external/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/seed-hello-world-external/README.md -------------------------------------------------------------------------------- /seed-hello-world-external/hello_world_external.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/seed-hello-world-external/hello_world_external.groovy -------------------------------------------------------------------------------- /seed-hello-world-external/seed-hello-world-external.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/seed-hello-world-external/seed-hello-world-external.groovy -------------------------------------------------------------------------------- /seed-hello-world-inline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/seed-hello-world-inline/README.md -------------------------------------------------------------------------------- /seed-hello-world-inline/seed-hello-world-inline.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/figaw/freestyle-to-pipeline-jenkins/HEAD/seed-hello-world-inline/seed-hello-world-inline.groovy --------------------------------------------------------------------------------