├── .circleci └── config.yml ├── .editorconfig ├── .gitattributes ├── .gitignore ├── Jenkinsfile ├── LICENSE ├── README.md ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── src └── com │ └── mycompany │ └── jenkins │ ├── Build.groovy │ └── Git.groovy ├── test ├── com │ └── mycompany │ │ └── jenkins │ │ ├── BuildShould.groovy │ │ └── GitShould.groovy └── mocks │ └── WorkflowScriptStub.groovy └── vars └── simplePipeline.groovy /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoto/jenkins-shared-library/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoto/jenkins-shared-library/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoto/jenkins-shared-library/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | *.iml 3 | .gradle/ 4 | build/ 5 | out/ 6 | -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoto/jenkins-shared-library/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoto/jenkins-shared-library/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoto/jenkins-shared-library/HEAD/README.md -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoto/jenkins-shared-library/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoto/jenkins-shared-library/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoto/jenkins-shared-library/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoto/jenkins-shared-library/HEAD/gradlew.bat -------------------------------------------------------------------------------- /src/com/mycompany/jenkins/Build.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoto/jenkins-shared-library/HEAD/src/com/mycompany/jenkins/Build.groovy -------------------------------------------------------------------------------- /src/com/mycompany/jenkins/Git.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoto/jenkins-shared-library/HEAD/src/com/mycompany/jenkins/Git.groovy -------------------------------------------------------------------------------- /test/com/mycompany/jenkins/BuildShould.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoto/jenkins-shared-library/HEAD/test/com/mycompany/jenkins/BuildShould.groovy -------------------------------------------------------------------------------- /test/com/mycompany/jenkins/GitShould.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoto/jenkins-shared-library/HEAD/test/com/mycompany/jenkins/GitShould.groovy -------------------------------------------------------------------------------- /test/mocks/WorkflowScriptStub.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoto/jenkins-shared-library/HEAD/test/mocks/WorkflowScriptStub.groovy -------------------------------------------------------------------------------- /vars/simplePipeline.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hoto/jenkins-shared-library/HEAD/vars/simplePipeline.groovy --------------------------------------------------------------------------------