├── LICENSE.txt ├── README.md ├── declarative-examples ├── README.md ├── jenkinsfile-examples │ ├── README.md │ └── mavenDocker.groovy └── simple-examples │ ├── README.md │ ├── credentialsMixedEnvironment.groovy │ ├── credentialsUsernamePassword.groovy │ ├── dockerfileAlternativeName.groovy │ ├── dockerfileDefault.groovy │ ├── environmentInStage.groovy │ ├── environmentNonLiteral.groovy │ ├── legacyMetaStepSyntax.groovy │ ├── parametersBooleanRecursivePromotion.groovy │ ├── postConditionOrder.groovy │ ├── postInStage.groovy │ ├── postUnstable.groovy │ ├── propertiesOptionsandTriggers.groovy │ ├── scriptVariableAssignment.groovy │ ├── stepsAndWrappers.groovy │ ├── toolsBuildPluginParentPOM.groovy │ ├── toolsInStage.groovy │ ├── whenBranchMaster.groovy │ ├── whenBranchNotMaster.groovy │ ├── whenEnvVarCondition.groovy │ ├── whenExpressionSkip.groovy │ └── whenLaterStages.groovy ├── docs └── BEST_PRACTICES.md ├── global-library-examples ├── README.md └── global-function │ ├── Jenkinsfile │ ├── README.md │ └── standardBuild.groovy ├── jenkinsfile-examples ├── README.md ├── android-build-flavor-from-branch │ ├── JenkinsFile │ └── README.md ├── msbuild │ ├── Jenkinsfile │ └── README.md ├── nodejs-build-test-deploy-docker-notify │ ├── Jenkinsfile │ └── README.md └── sonarqube │ ├── Jenkinsfile │ └── README.md └── pipeline-examples ├── README.md ├── ansi-color-build-wrapper ├── AnsiColorBuildWrapper.groovy └── README.md ├── archive-build-output-artifacts ├── ArchiveBuildOutputArtifacts.groovy └── README.md ├── artifactory-generic-upload-download ├── README.md └── artifactoryGenericUploadDownload.groovy ├── artifactory-gradle-build ├── README.md └── artifactoryGradleBuild.groovy ├── artifactory-maven-build ├── README.md └── artifactoryMavenBuild.groovy ├── configfile-provider-plugin ├── README.md └── configFileProvider.groovy ├── external-workspace-manager ├── README.md └── externalWorkspace.groovy ├── get-build-cause ├── README.md └── getBuildCause.groovy ├── gitcommit ├── README.md └── gitcommit.groovy ├── gitcommit_changeset ├── README.md └── gitcommit_changeset.groovy ├── github-org-plugin └── access-repo-information.groovy ├── ircnotify-commandline ├── README.md └── ircNotify.groovy ├── jobs-in-parallel ├── README.md └── jobs_in_parallel.groovy ├── load-from-file ├── README.md ├── externalCall.groovy ├── externalMethod.groovy ├── loadFromGithub.groovy └── pipeline.groovy ├── maven-and-jdk-specific-version ├── README.md └── mavenAndJdkSpecificVersion.groovy ├── parallel-from-grep ├── README.md └── parallelFromGrep.groovy ├── parallel-from-list ├── README.md └── parallelFromList.groovy ├── parallel-multiple-nodes ├── ParallelMultipleNodes.groovy └── README.md ├── push-git-repo ├── README.md └── pushGitRepo.groovy ├── slacknotify ├── README.md └── slackNotify.groovy ├── timestamper-wrapper ├── README.md └── timestamperWrapper.groovy ├── trigger-job-on-all-nodes ├── README.md └── triggerJobOnEveryNode.groovy └── unstash-different-dir ├── README.md └── unstashDifferentDir.groovy /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/README.md -------------------------------------------------------------------------------- /declarative-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/README.md -------------------------------------------------------------------------------- /declarative-examples/jenkinsfile-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/jenkinsfile-examples/README.md -------------------------------------------------------------------------------- /declarative-examples/jenkinsfile-examples/mavenDocker.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/jenkinsfile-examples/mavenDocker.groovy -------------------------------------------------------------------------------- /declarative-examples/simple-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/simple-examples/README.md -------------------------------------------------------------------------------- /declarative-examples/simple-examples/credentialsMixedEnvironment.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/simple-examples/credentialsMixedEnvironment.groovy -------------------------------------------------------------------------------- /declarative-examples/simple-examples/credentialsUsernamePassword.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/simple-examples/credentialsUsernamePassword.groovy -------------------------------------------------------------------------------- /declarative-examples/simple-examples/dockerfileAlternativeName.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/simple-examples/dockerfileAlternativeName.groovy -------------------------------------------------------------------------------- /declarative-examples/simple-examples/dockerfileDefault.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/simple-examples/dockerfileDefault.groovy -------------------------------------------------------------------------------- /declarative-examples/simple-examples/environmentInStage.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/simple-examples/environmentInStage.groovy -------------------------------------------------------------------------------- /declarative-examples/simple-examples/environmentNonLiteral.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/simple-examples/environmentNonLiteral.groovy -------------------------------------------------------------------------------- /declarative-examples/simple-examples/legacyMetaStepSyntax.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/simple-examples/legacyMetaStepSyntax.groovy -------------------------------------------------------------------------------- /declarative-examples/simple-examples/parametersBooleanRecursivePromotion.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/simple-examples/parametersBooleanRecursivePromotion.groovy -------------------------------------------------------------------------------- /declarative-examples/simple-examples/postConditionOrder.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/simple-examples/postConditionOrder.groovy -------------------------------------------------------------------------------- /declarative-examples/simple-examples/postInStage.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/simple-examples/postInStage.groovy -------------------------------------------------------------------------------- /declarative-examples/simple-examples/postUnstable.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/simple-examples/postUnstable.groovy -------------------------------------------------------------------------------- /declarative-examples/simple-examples/propertiesOptionsandTriggers.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/simple-examples/propertiesOptionsandTriggers.groovy -------------------------------------------------------------------------------- /declarative-examples/simple-examples/scriptVariableAssignment.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/simple-examples/scriptVariableAssignment.groovy -------------------------------------------------------------------------------- /declarative-examples/simple-examples/stepsAndWrappers.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/simple-examples/stepsAndWrappers.groovy -------------------------------------------------------------------------------- /declarative-examples/simple-examples/toolsBuildPluginParentPOM.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/simple-examples/toolsBuildPluginParentPOM.groovy -------------------------------------------------------------------------------- /declarative-examples/simple-examples/toolsInStage.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/simple-examples/toolsInStage.groovy -------------------------------------------------------------------------------- /declarative-examples/simple-examples/whenBranchMaster.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/simple-examples/whenBranchMaster.groovy -------------------------------------------------------------------------------- /declarative-examples/simple-examples/whenBranchNotMaster.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/simple-examples/whenBranchNotMaster.groovy -------------------------------------------------------------------------------- /declarative-examples/simple-examples/whenEnvVarCondition.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/simple-examples/whenEnvVarCondition.groovy -------------------------------------------------------------------------------- /declarative-examples/simple-examples/whenExpressionSkip.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/simple-examples/whenExpressionSkip.groovy -------------------------------------------------------------------------------- /declarative-examples/simple-examples/whenLaterStages.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/declarative-examples/simple-examples/whenLaterStages.groovy -------------------------------------------------------------------------------- /docs/BEST_PRACTICES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/docs/BEST_PRACTICES.md -------------------------------------------------------------------------------- /global-library-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/global-library-examples/README.md -------------------------------------------------------------------------------- /global-library-examples/global-function/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/global-library-examples/global-function/Jenkinsfile -------------------------------------------------------------------------------- /global-library-examples/global-function/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/global-library-examples/global-function/README.md -------------------------------------------------------------------------------- /global-library-examples/global-function/standardBuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/global-library-examples/global-function/standardBuild.groovy -------------------------------------------------------------------------------- /jenkinsfile-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/jenkinsfile-examples/README.md -------------------------------------------------------------------------------- /jenkinsfile-examples/android-build-flavor-from-branch/JenkinsFile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/jenkinsfile-examples/android-build-flavor-from-branch/JenkinsFile -------------------------------------------------------------------------------- /jenkinsfile-examples/android-build-flavor-from-branch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/jenkinsfile-examples/android-build-flavor-from-branch/README.md -------------------------------------------------------------------------------- /jenkinsfile-examples/msbuild/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/jenkinsfile-examples/msbuild/Jenkinsfile -------------------------------------------------------------------------------- /jenkinsfile-examples/msbuild/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/jenkinsfile-examples/msbuild/README.md -------------------------------------------------------------------------------- /jenkinsfile-examples/nodejs-build-test-deploy-docker-notify/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/jenkinsfile-examples/nodejs-build-test-deploy-docker-notify/Jenkinsfile -------------------------------------------------------------------------------- /jenkinsfile-examples/nodejs-build-test-deploy-docker-notify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/jenkinsfile-examples/nodejs-build-test-deploy-docker-notify/README.md -------------------------------------------------------------------------------- /jenkinsfile-examples/sonarqube/Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/jenkinsfile-examples/sonarqube/Jenkinsfile -------------------------------------------------------------------------------- /jenkinsfile-examples/sonarqube/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/jenkinsfile-examples/sonarqube/README.md -------------------------------------------------------------------------------- /pipeline-examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/README.md -------------------------------------------------------------------------------- /pipeline-examples/ansi-color-build-wrapper/AnsiColorBuildWrapper.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/ansi-color-build-wrapper/AnsiColorBuildWrapper.groovy -------------------------------------------------------------------------------- /pipeline-examples/ansi-color-build-wrapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/ansi-color-build-wrapper/README.md -------------------------------------------------------------------------------- /pipeline-examples/archive-build-output-artifacts/ArchiveBuildOutputArtifacts.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/archive-build-output-artifacts/ArchiveBuildOutputArtifacts.groovy -------------------------------------------------------------------------------- /pipeline-examples/archive-build-output-artifacts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/archive-build-output-artifacts/README.md -------------------------------------------------------------------------------- /pipeline-examples/artifactory-generic-upload-download/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/artifactory-generic-upload-download/README.md -------------------------------------------------------------------------------- /pipeline-examples/artifactory-generic-upload-download/artifactoryGenericUploadDownload.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/artifactory-generic-upload-download/artifactoryGenericUploadDownload.groovy -------------------------------------------------------------------------------- /pipeline-examples/artifactory-gradle-build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/artifactory-gradle-build/README.md -------------------------------------------------------------------------------- /pipeline-examples/artifactory-gradle-build/artifactoryGradleBuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/artifactory-gradle-build/artifactoryGradleBuild.groovy -------------------------------------------------------------------------------- /pipeline-examples/artifactory-maven-build/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/artifactory-maven-build/README.md -------------------------------------------------------------------------------- /pipeline-examples/artifactory-maven-build/artifactoryMavenBuild.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/artifactory-maven-build/artifactoryMavenBuild.groovy -------------------------------------------------------------------------------- /pipeline-examples/configfile-provider-plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/configfile-provider-plugin/README.md -------------------------------------------------------------------------------- /pipeline-examples/configfile-provider-plugin/configFileProvider.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/configfile-provider-plugin/configFileProvider.groovy -------------------------------------------------------------------------------- /pipeline-examples/external-workspace-manager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/external-workspace-manager/README.md -------------------------------------------------------------------------------- /pipeline-examples/external-workspace-manager/externalWorkspace.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/external-workspace-manager/externalWorkspace.groovy -------------------------------------------------------------------------------- /pipeline-examples/get-build-cause/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/get-build-cause/README.md -------------------------------------------------------------------------------- /pipeline-examples/get-build-cause/getBuildCause.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/get-build-cause/getBuildCause.groovy -------------------------------------------------------------------------------- /pipeline-examples/gitcommit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/gitcommit/README.md -------------------------------------------------------------------------------- /pipeline-examples/gitcommit/gitcommit.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/gitcommit/gitcommit.groovy -------------------------------------------------------------------------------- /pipeline-examples/gitcommit_changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/gitcommit_changeset/README.md -------------------------------------------------------------------------------- /pipeline-examples/gitcommit_changeset/gitcommit_changeset.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/gitcommit_changeset/gitcommit_changeset.groovy -------------------------------------------------------------------------------- /pipeline-examples/github-org-plugin/access-repo-information.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/github-org-plugin/access-repo-information.groovy -------------------------------------------------------------------------------- /pipeline-examples/ircnotify-commandline/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/ircnotify-commandline/README.md -------------------------------------------------------------------------------- /pipeline-examples/ircnotify-commandline/ircNotify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/ircnotify-commandline/ircNotify.groovy -------------------------------------------------------------------------------- /pipeline-examples/jobs-in-parallel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/jobs-in-parallel/README.md -------------------------------------------------------------------------------- /pipeline-examples/jobs-in-parallel/jobs_in_parallel.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/jobs-in-parallel/jobs_in_parallel.groovy -------------------------------------------------------------------------------- /pipeline-examples/load-from-file/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/load-from-file/README.md -------------------------------------------------------------------------------- /pipeline-examples/load-from-file/externalCall.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/load-from-file/externalCall.groovy -------------------------------------------------------------------------------- /pipeline-examples/load-from-file/externalMethod.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/load-from-file/externalMethod.groovy -------------------------------------------------------------------------------- /pipeline-examples/load-from-file/loadFromGithub.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/load-from-file/loadFromGithub.groovy -------------------------------------------------------------------------------- /pipeline-examples/load-from-file/pipeline.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/load-from-file/pipeline.groovy -------------------------------------------------------------------------------- /pipeline-examples/maven-and-jdk-specific-version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/maven-and-jdk-specific-version/README.md -------------------------------------------------------------------------------- /pipeline-examples/maven-and-jdk-specific-version/mavenAndJdkSpecificVersion.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/maven-and-jdk-specific-version/mavenAndJdkSpecificVersion.groovy -------------------------------------------------------------------------------- /pipeline-examples/parallel-from-grep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/parallel-from-grep/README.md -------------------------------------------------------------------------------- /pipeline-examples/parallel-from-grep/parallelFromGrep.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/parallel-from-grep/parallelFromGrep.groovy -------------------------------------------------------------------------------- /pipeline-examples/parallel-from-list/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/parallel-from-list/README.md -------------------------------------------------------------------------------- /pipeline-examples/parallel-from-list/parallelFromList.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/parallel-from-list/parallelFromList.groovy -------------------------------------------------------------------------------- /pipeline-examples/parallel-multiple-nodes/ParallelMultipleNodes.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/parallel-multiple-nodes/ParallelMultipleNodes.groovy -------------------------------------------------------------------------------- /pipeline-examples/parallel-multiple-nodes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/parallel-multiple-nodes/README.md -------------------------------------------------------------------------------- /pipeline-examples/push-git-repo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/push-git-repo/README.md -------------------------------------------------------------------------------- /pipeline-examples/push-git-repo/pushGitRepo.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/push-git-repo/pushGitRepo.groovy -------------------------------------------------------------------------------- /pipeline-examples/slacknotify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/slacknotify/README.md -------------------------------------------------------------------------------- /pipeline-examples/slacknotify/slackNotify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/slacknotify/slackNotify.groovy -------------------------------------------------------------------------------- /pipeline-examples/timestamper-wrapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/timestamper-wrapper/README.md -------------------------------------------------------------------------------- /pipeline-examples/timestamper-wrapper/timestamperWrapper.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/timestamper-wrapper/timestamperWrapper.groovy -------------------------------------------------------------------------------- /pipeline-examples/trigger-job-on-all-nodes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/trigger-job-on-all-nodes/README.md -------------------------------------------------------------------------------- /pipeline-examples/trigger-job-on-all-nodes/triggerJobOnEveryNode.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/trigger-job-on-all-nodes/triggerJobOnEveryNode.groovy -------------------------------------------------------------------------------- /pipeline-examples/unstash-different-dir/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/unstash-different-dir/README.md -------------------------------------------------------------------------------- /pipeline-examples/unstash-different-dir/unstashDifferentDir.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jenkinsci/pipeline-examples/HEAD/pipeline-examples/unstash-different-dir/unstashDifferentDir.groovy --------------------------------------------------------------------------------