├── .gitattributes ├── .github └── workflows │ ├── maven-build.yml │ └── maven-deploy.yml ├── .gitignore ├── .maven-settings.xml ├── LICENSE.txt ├── README.md ├── assembly └── complete.xml ├── docs ├── assets │ ├── checkout-scm │ │ ├── checkout-to-local-branch.png │ │ └── mode-2.png │ ├── exec-managed-shell-script │ │ └── demo-script.png │ ├── requirements │ │ └── scriptApproval.xml │ └── tutorial-setup │ │ ├── shared-library-001.png │ │ ├── shared-library-002.png │ │ └── shared-library-003.png ├── config-map-merging.md ├── config-structure.md ├── credentials.md ├── generic-config.md ├── logging.md ├── managed-files.md ├── pattern-matching.md ├── requirements.md ├── tutorial-setup.md └── usage-examples.md ├── jenkinsfiles └── integration-tests.groovy ├── pom.xml ├── resources └── jenkins-pipeline-library │ └── managedScripts │ └── shell │ └── maven │ └── purge-snapshots.sh ├── src ├── io │ └── wcm │ │ └── devops │ │ └── jenkins │ │ └── pipeline │ │ ├── config │ │ ├── GenericConfig.groovy │ │ ├── GenericConfigConstants.groovy │ │ ├── GenericConfigParser.groovy │ │ └── GenericConfigUtils.groovy │ │ ├── credentials │ │ ├── Credential.groovy │ │ ├── CredentialAware.groovy │ │ ├── CredentialConstants.groovy │ │ └── CredentialParser.groovy │ │ ├── environment │ │ ├── EnvironmentConstants.groovy │ │ └── EnvironmentUtils.groovy │ │ ├── job │ │ └── BuildParameterFactory.groovy │ │ ├── managedfiles │ │ ├── ManagedFile.groovy │ │ ├── ManagedFileConstants.groovy │ │ └── ManagedFileParser.groovy │ │ ├── model │ │ ├── PatternMatchable.groovy │ │ ├── Result.groovy │ │ ├── Tool.groovy │ │ └── jenkins │ │ │ └── api │ │ │ └── Job.groovy │ │ ├── scm │ │ └── GitRepository.groovy │ │ ├── shell │ │ ├── CommandBuilder.groovy │ │ ├── CommandBuilderImpl.groovy │ │ ├── ConfigAwareCommandBuilder.groovy │ │ ├── GitCommandBuilderImpl.groovy │ │ ├── MavenCommandBuilderImpl.groovy │ │ ├── ScpCommandBuilderImpl.groovy │ │ └── ShellUtils.groovy │ │ ├── ssh │ │ └── SSHTarget.groovy │ │ ├── tools │ │ └── ansible │ │ │ ├── Role.groovy │ │ │ └── RoleRequirements.groovy │ │ ├── utils │ │ ├── ConfigConstants.groovy │ │ ├── IntegrationTestHelper.groovy │ │ ├── ListUtils.groovy │ │ ├── NotificationTriggerHelper.groovy │ │ ├── PatternMatcher.groovy │ │ ├── TypeUtils.groovy │ │ ├── logging │ │ │ ├── LogLevel.groovy │ │ │ └── Logger.groovy │ │ ├── maps │ │ │ ├── MapMergeMode.groovy │ │ │ └── MapUtils.groovy │ │ └── resources │ │ │ ├── JsonLibraryResource.groovy │ │ │ ├── LibraryResource.groovy │ │ │ └── YamlLibraryResource.groovy │ │ └── versioning │ │ ├── ComparableVersion.groovy │ │ ├── IntegerItem.groovy │ │ ├── Item.groovy │ │ ├── ListItem.groovy │ │ └── StringItem.groovy ├── jenkins-pipeline-library.gdsl └── pipeline.gdsl ├── test ├── io │ └── wcm │ │ ├── devops │ │ └── jenkins │ │ │ └── pipeline │ │ │ ├── config │ │ │ ├── GenericConfigParserTest.groovy │ │ │ └── GenericConfigUtilsTest.groovy │ │ │ ├── credentials │ │ │ ├── CredentialParserTest.groovy │ │ │ └── CredentialTest.groovy │ │ │ ├── environment │ │ │ └── EnvironmentUtilsTest.groovy │ │ │ ├── job │ │ │ └── BuildParameterFactoryTest.groovy │ │ │ ├── managedfiles │ │ │ ├── ManagedFileParserTest.groovy │ │ │ └── MangedFileTest.groovy │ │ │ ├── model │ │ │ ├── ResultTest.groovy │ │ │ └── jenkins │ │ │ │ └── api │ │ │ │ └── JobTest.groovy │ │ │ ├── scm │ │ │ └── GitRepositoryTest.groovy │ │ │ ├── shell │ │ │ ├── CommandBuilderImplTest.groovy │ │ │ ├── MavenCommandBuilderImplTest.groovy │ │ │ ├── ScpCommandBuilderImplTest.groovy │ │ │ └── ShellUtilsTest.groovy │ │ │ ├── tools │ │ │ └── ansible │ │ │ │ ├── RoleRequirementsTest.groovy │ │ │ │ └── RoleTest.groovy │ │ │ ├── utils │ │ │ ├── IntegrationTestUtilTest.groovy │ │ │ ├── ListUtilsTest.groovy │ │ │ ├── NotificationTriggerHelperTest.groovy │ │ │ ├── PatternMatcherGlobalMavenSettingsTest.groovy │ │ │ ├── PatternMatcherMavenSettingsTest.groovy │ │ │ ├── PatternMatcherSCMCredentialTest.groovy │ │ │ ├── PatternMatcherTest.groovy │ │ │ ├── TypeUtilsTest.groovy │ │ │ ├── logging │ │ │ │ ├── LogLevelTest.groovy │ │ │ │ ├── LoggerCpsScriptTest.groovy │ │ │ │ └── LoggerTest.groovy │ │ │ ├── maps │ │ │ │ ├── MapMergeModeTest.groovy │ │ │ │ └── MapUtilsTest.groovy │ │ │ └── resources │ │ │ │ ├── JsonLibraryResourceTest.groovy │ │ │ │ ├── LibraryResourceTest.groovy │ │ │ │ └── YamlLibraryResourceTest.groovy │ │ │ └── versioning │ │ │ └── ComparableVersionTest.groovy │ │ └── testing │ │ └── jenkins │ │ └── pipeline │ │ ├── BasicStepsMock.groovy │ │ ├── CoreStepsMock.groovy │ │ ├── CpsScriptMock.groovy │ │ ├── CpsScriptTestBase.groovy │ │ ├── DSLMock.groovy │ │ ├── DSLTestBase.groovy │ │ ├── EnvActionImplMock.groovy │ │ ├── JobPropertiesMock.groovy │ │ ├── LibraryIntegrationTestBase.groovy │ │ ├── LibraryIntegrationTestContext.groovy │ │ ├── RunWrapperMock.groovy │ │ ├── StepConstants.groovy │ │ ├── global │ │ └── lib │ │ │ ├── SelfSourceRetriever.groovy │ │ │ └── SubmoduleSourceRetriever.groovy │ │ ├── plugins │ │ ├── AnsiColorPluginMock.groovy │ │ ├── AnsiblePluginMock.groovy │ │ ├── BadgePluginMock.groovy │ │ ├── ConfigFileProviderPluginMock.groovy │ │ ├── EmailExtPluginMock.groovy │ │ ├── HTTPRequestPluginMock.groovy │ │ ├── JUnitPluginMock.groovy │ │ ├── MQTTNotificationPluginMock.groovy │ │ ├── MattermostNotificationPluginMock.groovy │ │ ├── PipelineStageStepPluginMock.groovy │ │ ├── PipelineUtilityStepsPluginMock.groovy │ │ ├── SSHAgentPluginMock.groovy │ │ ├── TeamsNotificationPluginMock.groovy │ │ ├── TimestamperPluginMock.groovy │ │ ├── VersionNumberPluginMock.groovy │ │ ├── WarningsNGPluginMock.groovy │ │ ├── WorkflowDurableTaskStepPluginMock.groovy │ │ └── credentials │ │ │ ├── CredentialsPluginMock.groovy │ │ │ └── UsernamePasswordMock.groovy │ │ └── recorder │ │ ├── StepRecorder.groovy │ │ └── StepRecorderAssert.groovy ├── jenkins │ └── plugins │ │ └── http_request │ │ └── ResponseContentSupplierMock.groovy ├── resources │ ├── credentials │ │ ├── http │ │ │ └── credentials.json │ │ ├── parser-test.json │ │ ├── scm │ │ │ └── credentials.json │ │ └── ssh │ │ │ └── credentials.json │ ├── example-resource.json │ ├── example-resource.txt │ ├── invalid.json │ ├── jenkins-pipeline-library │ │ ├── config │ │ │ ├── generic-config-parser-testdata.yaml │ │ │ └── notify │ │ │ │ ├── mail.yaml │ │ │ │ ├── mattermost.yaml │ │ │ │ ├── mqtt.yaml │ │ │ │ └── teams.yaml │ │ └── managedScripts │ │ │ └── shell │ │ │ └── maven │ │ │ └── purge-snapshots.sh │ ├── jenkinsRestApi │ │ └── findJobsByNameRegex-sample001.json │ ├── managedfiles │ │ ├── maven │ │ │ ├── global-settings.json │ │ │ ├── parser-test.json │ │ │ └── settings.json │ │ ├── npm │ │ │ └── npm-config-userconfig.json │ │ └── ruby │ │ │ └── bundle-config.json │ ├── mavenRelease │ │ ├── invalid-maven-release-version-pom.xml │ │ ├── invalid-maven-scm-provider-gitexe-pom.xml │ │ └── valid-effective-pom.xml │ ├── tools │ │ └── ansible │ │ │ ├── not.existingrole.json │ │ │ ├── requirements.yml │ │ │ ├── wcm_io_devops.jenkins_facts.json │ │ │ ├── wcm_io_devops.jenkins_pipeline_library.json │ │ │ └── wcm_io_devops.jenkins_plugins.json │ └── yaml │ │ └── valid.yaml └── vars │ ├── ansible │ ├── AnsibleCheckoutRolesIT.groovy │ ├── AnsibleIT.groovy │ ├── AnsibleInstallRolesIT.groovy │ ├── AnsiblePlaybookIT.groovy │ └── jobs │ │ ├── ansibleCheckoutRolesWithConfigTestJob.groovy │ │ ├── ansibleCheckoutRolesWithPathTestJob.groovy │ │ ├── ansibleExecPlaybookCustomConfigurationTestJob.groovy │ │ ├── ansibleExecPlaybookInjectParamsTestJob.groovy │ │ ├── ansibleExecPlaybookMinimalTestJob.groovy │ │ ├── ansibleGetGalaxyRoleInfoTestJob.groovy │ │ ├── ansibleGetGalaxyRoleInfoWithErrorsTestJob.groovy │ │ ├── ansibleInstallRolesCustomTestJob.groovy │ │ ├── ansibleInstallRolesDefaultTestJob.groovy │ │ └── ansibleWrapInstallationTestJob.groovy │ ├── checkoutScm │ ├── CheckoutScmIT.groovy │ └── jobs │ │ ├── checkoutScmCustomVariant1Job.groovy │ │ ├── checkoutScmCustomVariant2Job.groovy │ │ ├── checkoutScmCustomVariant3Job.groovy │ │ ├── checkoutScmDefaultsJob.groovy │ │ ├── checkoutScmEmptyCredentialsJob.groovy │ │ └── checkoutWithScmVarJob.groovy │ ├── conditionalStage │ ├── ConditionalStageIT.groovy │ └── jobs │ │ ├── shouldNotRunConditionalStageTestJob.groovy │ │ └── shouldRunConditionalStageTestJob.groovy │ ├── credentials │ ├── lookupHttpCredential │ │ ├── CredentialsHttpIT.groovy │ │ └── jobs │ │ │ ├── shouldLookupHttpCredentialTestJob.groovy │ │ │ └── shouldNotLookupHttpCredentialTestJob.groovy │ ├── lookupScmCredential │ │ ├── CredentialsScmIT.groovy │ │ └── jobs │ │ │ ├── shouldLookupScmCredentialTestJob.groovy │ │ │ └── shouldNotLookupScmCredentialTestJob.groovy │ └── lookupSshCredential │ │ ├── CredentialsSshIT.groovy │ │ └── jobs │ │ ├── shouldLookupSshCredentialTestJob.groovy │ │ └── shouldNotLookupSshCredentialTestJob.groovy │ ├── execMaven │ ├── ExecMavenIT.groovy │ └── jobs │ │ ├── execMavenCustomCommandTestJob.groovy │ │ ├── execMavenCustomVariant1Job.groovy │ │ ├── execMavenCustomVariant2Job.groovy │ │ ├── execMavenDefaultJob.groovy │ │ ├── execMavenGlobalAndLocalSettingsJob.groovy │ │ ├── execMavenGlobalSettingsJob.groovy │ │ ├── execMavenLocalSettingsJob.groovy │ │ ├── execMavenWithBuildParametersTestJob.groovy │ │ ├── execMavenWithNPMAndRubyTestJob.groovy │ │ ├── execMavenWithReturnStatus.groovy │ │ ├── execMavenWithReturnStdout.groovy │ │ └── execMavenWithSettingsViaScmUrlFromEnvJob.groovy │ ├── execMavenRelease │ ├── ExecMavenReleaseIT.groovy │ └── jobs │ │ ├── shouldExecMavenReleaseWithKeyAgentTestJob.groovy │ │ ├── shouldFailWhenScmUrlIsNotGitSSHTestJob.groovy │ │ ├── shouldFailWhenScmUrlIsNullTestJob.groovy │ │ ├── shouldFailWithNoBranchEnvVarTestJob.groovy │ │ └── shouldFailWithNotAllowedBranchNameTestJob.groovy │ ├── execNpm │ ├── ExecNpmIT.groovy │ └── jobs │ │ ├── execNpmCustomAndAutoLookupTestJob.groovy │ │ └── execNpmDefaultTestJob.groovy │ ├── getScmUrl │ ├── GetScmUrlIT.groovy │ └── jobs │ │ ├── getScmUrlFromConfigTestJob.groovy │ │ ├── getScmUrlFromEnvVarTestJob.groovy │ │ └── getScmUrlJobNameFallbackTestJob.groovy │ ├── gitTools │ ├── GitToolsIT.groovy │ ├── getBranch │ │ └── GitToolsGetBranchIT.groovy │ ├── jobs │ │ ├── getFetchOriginTestJob.groovy │ │ ├── getParentBranchTestJob.groovy │ │ ├── getPushOriginTestJob.groovy │ │ └── setGitBranchTestJob.groovy │ ├── mirrorHttps │ │ ├── GitToolsMirrorHttpsIT.groovy │ │ └── jobs │ │ │ ├── shouldMirrorRepositoryWithCredentialAutoLookupTestJob.groovy │ │ │ └── shouldMirrorRepositoryWithProvidedCredentialsTestJob.groovy │ └── mirrorSsh │ │ ├── GitToolsMirrorSshIT.groovy │ │ └── jobs │ │ ├── shouldFailOnIdenticalServersVariant1TestJob.groovy │ │ ├── shouldFailOnIdenticalServersVariant2TestJob.groovy │ │ ├── shouldFailOnInvalidSrcRepoTestJob.groovy │ │ ├── shouldFailOnInvalidTargetRepoTestJob.groovy │ │ ├── shouldMirrorRepositoryWithCredentialAutoLookupTestJob.groovy │ │ └── shouldMirrorRepositoryWithProvidedCredentialsTestJob.groovy │ ├── im │ ├── mattermost │ │ ├── ImMattermostIT.groovy │ │ └── jobs │ │ │ ├── imMattermostConfigJob.groovy │ │ │ ├── imMattermostCustomEndpointCredentialJob.groovy │ │ │ ├── imMattermostCustomEndpointJob.groovy │ │ │ └── imMattermostDefaultsJob.groovy │ └── teams │ │ ├── ImTeamsIT.groovy │ │ └── jobs │ │ ├── imTeamsConfigJob.groovy │ │ ├── imTeamsCustomWebhookUrlCredentialJob.groovy │ │ ├── imTeamsCustomWebhookUrlJob.groovy │ │ └── imTeamsDefaultsJob.groovy │ ├── jenkinsRestApi │ ├── JenkinsRestApiIT.groovy │ └── jobs │ │ ├── shouldFindAllJobsTestJob.groovy │ │ ├── shouldFindNoJobTestJob.groovy │ │ └── shouldFindOneJobTestJob.groovy │ ├── libraryIntegrationTestBase │ ├── LibraryIntegrationTestBaseIT.groovy │ └── jobs │ │ ├── retryTestJob.groovy │ │ ├── shouldFindDescendandsWithoutGlobTestJob.groovy │ │ ├── shouldFindMultipleFilesTestJob.groovy │ │ ├── shouldFindNoFileTestJob.groovy │ │ └── shouldFindOneFileTestJob.groovy │ ├── logging │ ├── LoggingIT.groovy │ └── jobs │ │ └── shouldInitializeWithinITEnvironmentTestJob.groovy │ ├── managedScripts │ ├── MangedJenkinsShellScriptIT.groovy │ ├── MangedPipelineShellScriptIT.groovy │ └── jobs │ │ ├── jenkinsShellScript │ │ ├── shouldExecuteJenkinsShellScriptWithDefaultsTestJob.groovy │ │ ├── shouldExecuteJenkinsShellScriptWithReturnStatusTestJob.groovy │ │ ├── shouldExecuteJenkinsShellScriptWithReturnStdoutStatusTestJob.groovy │ │ ├── shouldExecuteJenkinsShellScriptWithReturnStdoutTestJob.groovy │ │ └── shouldExecuteJenkinsShellScriptWithoutCommandBuilderTestJob.groovy │ │ └── pipelineShellScript │ │ ├── shouldExecutePipelineShellScriptWithDefaultsTestJob.groovy │ │ ├── shouldExecutePipelineShellScriptWithReturnStatusTestJob.groovy │ │ ├── shouldExecutePipelineShellScriptWithReturnStdoutStatusTestJob.groovy │ │ ├── shouldExecutePipelineShellScriptWithReturnStdoutTestJob.groovy │ │ └── shouldExecutePipelineShellScriptWithoutCommandBuilderTestJob.groovy │ ├── maven │ ├── MavenIT.groovy │ └── jobs │ │ ├── purgeSnapshotsCustomMapTestJob.groovy │ │ ├── purgeSnapshotsCustomTestJob.groovy │ │ └── purgeSnapshotsDefaultsTestJob.groovy │ ├── notify │ ├── mail │ │ ├── NotifyMailCustomIT.groovy │ │ ├── NotifyMailCustomRecipientsIT.groovy │ │ ├── NotifyMailDefaultsIT.groovy │ │ ├── NotifyMailDisabledIT.groovy │ │ ├── NotifyMailGenericConfigIT.groovy │ │ └── jobs │ │ │ ├── notifyMailCustomJob.groovy │ │ │ ├── notifyMailCustomRecipientsJob.groovy │ │ │ ├── notifyMailDefaultsJob.groovy │ │ │ └── notifyMailDisabledTestJob.groovy │ ├── mattermost │ │ ├── NotifyMattermostCustomIT.groovy │ │ ├── NotifyMattermostDefaultsIT.groovy │ │ ├── NotifyMattermostDisabledIT.groovy │ │ ├── NotifyMattermostIntegrationTestBase.groovy │ │ └── jobs │ │ │ ├── notifyMattermostCustomJob.groovy │ │ │ ├── notifyMattermostDefaultsJob.groovy │ │ │ └── notifyMattermostDisabledJob.groovy │ ├── mqtt │ │ ├── NotifyMqttIT.groovy │ │ └── jobs │ │ │ ├── notifyMqttCustomJob.groovy │ │ │ └── notifyMqttDefaultsJob.groovy │ └── teams │ │ ├── NotifyTeamsCustomIT.groovy │ │ ├── NotifyTeamsDefaultsIT.groovy │ │ ├── NotifyTeamsDisabledIT.groovy │ │ ├── NotifyTeamsIntegrationTestBase.groovy │ │ └── jobs │ │ ├── notifyTeamsCustomJob.groovy │ │ ├── notifyTeamsDefaultsJob.groovy │ │ └── notifyTeamsDisabledJob.groovy │ ├── setBuildName │ ├── SetBuildNameIT.groovy │ └── jobs │ │ └── setBuildNameJob.groovy │ ├── setScmUrl │ ├── SetScmUrlIT.groovy │ └── jobs │ │ ├── setScmUrlFromShellJob.groovy │ │ └── setScmUrlWithConfigJob.groovy │ ├── setupTools │ ├── SetupToolsIT.groovy │ └── jobs │ │ ├── shouldFailWhenToolNotFound.groovy │ │ ├── shouldUseCustomEnvVarsTestJob.groovy │ │ └── shouldUseDefaultEnvVarsTestJob.groovy │ ├── sshAgentWrapper │ ├── SSHAgentWrapperIT.groovy │ └── jobs │ │ ├── shouldNotWrapWithSSHAgent.groovy │ │ ├── shouldWrapWithCommandBuilderTestJob.groovy │ │ ├── shouldWrapWithMultipleSSHTargetsTestJob.groovy │ │ └── shouldWrapWithStringSSHTarget.groovy │ ├── transferScp │ ├── TransferScpIT.groovy │ └── jobs │ │ ├── transferScpRecursiveTestJob.groovy │ │ ├── transferScpSingleTestJob.groovy │ │ └── transferScpWithMinimalConfiguration.groovy │ └── wrappers │ ├── WrappersColorIT.groovy │ └── jobs │ ├── shouldWrapColorMultiWithConfigTestJob.groovy │ ├── shouldWrapColorOnlyOnceWithSameColorModeTestJob.groovy │ └── shouldWrapColorTestJob.groovy └── vars ├── ansible.groovy ├── ansible.md ├── checkoutScm.groovy ├── checkoutScm.md ├── conditionalStage.groovy ├── conditionalStage.md ├── credentials.groovy ├── credentials.md ├── execMaven.groovy ├── execMaven.md ├── execMavenRelease.groovy ├── execMavenRelease.md ├── execNpm.groovy ├── execNpm.md ├── genericConfig.groovy ├── genericConfig.md ├── getScmUrl.groovy ├── getScmUrl.md ├── gitTools.groovy ├── gitTools.md ├── im.groovy ├── im.md ├── integrationTestUtils.groovy ├── integrationTestUtils.md ├── jenkinsRestApi.groovy ├── jenkinsRestApi.md ├── managedScripts.groovy ├── managedScripts.md ├── maven.groovy ├── maven.md ├── notify.groovy ├── notify.md ├── setBuildName.groovy ├── setBuildName.md ├── setScmUrl.groovy ├── setScmUrl.md ├── setupTools.groovy ├── setupTools.md ├── sshAgentWrapper.groovy ├── sshAgentWrapper.md ├── transferScp.groovy ├── transferScp.md ├── wrappers.groovy └── wrappers.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/maven-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/.github/workflows/maven-build.yml -------------------------------------------------------------------------------- /.github/workflows/maven-deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/.github/workflows/maven-deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/.gitignore -------------------------------------------------------------------------------- /.maven-settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/.maven-settings.xml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/README.md -------------------------------------------------------------------------------- /assembly/complete.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/assembly/complete.xml -------------------------------------------------------------------------------- /docs/assets/checkout-scm/checkout-to-local-branch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/docs/assets/checkout-scm/checkout-to-local-branch.png -------------------------------------------------------------------------------- /docs/assets/checkout-scm/mode-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/docs/assets/checkout-scm/mode-2.png -------------------------------------------------------------------------------- /docs/assets/exec-managed-shell-script/demo-script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/docs/assets/exec-managed-shell-script/demo-script.png -------------------------------------------------------------------------------- /docs/assets/requirements/scriptApproval.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/docs/assets/requirements/scriptApproval.xml -------------------------------------------------------------------------------- /docs/assets/tutorial-setup/shared-library-001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/docs/assets/tutorial-setup/shared-library-001.png -------------------------------------------------------------------------------- /docs/assets/tutorial-setup/shared-library-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/docs/assets/tutorial-setup/shared-library-002.png -------------------------------------------------------------------------------- /docs/assets/tutorial-setup/shared-library-003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/docs/assets/tutorial-setup/shared-library-003.png -------------------------------------------------------------------------------- /docs/config-map-merging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/docs/config-map-merging.md -------------------------------------------------------------------------------- /docs/config-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/docs/config-structure.md -------------------------------------------------------------------------------- /docs/credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/docs/credentials.md -------------------------------------------------------------------------------- /docs/generic-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/docs/generic-config.md -------------------------------------------------------------------------------- /docs/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/docs/logging.md -------------------------------------------------------------------------------- /docs/managed-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/docs/managed-files.md -------------------------------------------------------------------------------- /docs/pattern-matching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/docs/pattern-matching.md -------------------------------------------------------------------------------- /docs/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/docs/requirements.md -------------------------------------------------------------------------------- /docs/tutorial-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/docs/tutorial-setup.md -------------------------------------------------------------------------------- /docs/usage-examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/docs/usage-examples.md -------------------------------------------------------------------------------- /jenkinsfiles/integration-tests.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/jenkinsfiles/integration-tests.groovy -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/pom.xml -------------------------------------------------------------------------------- /resources/jenkins-pipeline-library/managedScripts/shell/maven/purge-snapshots.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/resources/jenkins-pipeline-library/managedScripts/shell/maven/purge-snapshots.sh -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/config/GenericConfig.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/config/GenericConfig.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/config/GenericConfigConstants.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/config/GenericConfigConstants.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/config/GenericConfigParser.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/config/GenericConfigParser.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/config/GenericConfigUtils.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/config/GenericConfigUtils.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/credentials/Credential.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/credentials/Credential.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/credentials/CredentialAware.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/credentials/CredentialAware.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/credentials/CredentialConstants.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/credentials/CredentialConstants.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/credentials/CredentialParser.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/credentials/CredentialParser.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/environment/EnvironmentConstants.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/environment/EnvironmentConstants.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/environment/EnvironmentUtils.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/environment/EnvironmentUtils.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/job/BuildParameterFactory.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/job/BuildParameterFactory.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/managedfiles/ManagedFile.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/managedfiles/ManagedFile.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/managedfiles/ManagedFileConstants.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/managedfiles/ManagedFileConstants.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/managedfiles/ManagedFileParser.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/managedfiles/ManagedFileParser.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/model/PatternMatchable.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/model/PatternMatchable.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/model/Result.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/model/Result.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/model/Tool.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/model/Tool.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/model/jenkins/api/Job.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/model/jenkins/api/Job.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/scm/GitRepository.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/scm/GitRepository.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/shell/CommandBuilder.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/shell/CommandBuilder.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/shell/CommandBuilderImpl.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/shell/CommandBuilderImpl.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/shell/ConfigAwareCommandBuilder.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/shell/ConfigAwareCommandBuilder.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/shell/GitCommandBuilderImpl.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/shell/GitCommandBuilderImpl.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/shell/MavenCommandBuilderImpl.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/shell/MavenCommandBuilderImpl.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/shell/ScpCommandBuilderImpl.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/shell/ScpCommandBuilderImpl.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/shell/ShellUtils.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/shell/ShellUtils.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/ssh/SSHTarget.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/ssh/SSHTarget.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/tools/ansible/Role.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/tools/ansible/Role.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/tools/ansible/RoleRequirements.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/tools/ansible/RoleRequirements.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/utils/ConfigConstants.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/utils/ConfigConstants.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/utils/IntegrationTestHelper.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/utils/IntegrationTestHelper.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/utils/ListUtils.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/utils/ListUtils.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/utils/NotificationTriggerHelper.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/utils/NotificationTriggerHelper.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/utils/PatternMatcher.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/utils/PatternMatcher.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/utils/TypeUtils.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/utils/TypeUtils.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/utils/logging/LogLevel.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/utils/logging/LogLevel.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/utils/logging/Logger.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/utils/logging/Logger.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/utils/maps/MapMergeMode.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/utils/maps/MapMergeMode.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/utils/maps/MapUtils.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/utils/maps/MapUtils.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/utils/resources/JsonLibraryResource.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/utils/resources/JsonLibraryResource.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/utils/resources/LibraryResource.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/utils/resources/LibraryResource.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/utils/resources/YamlLibraryResource.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/utils/resources/YamlLibraryResource.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/versioning/ComparableVersion.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/versioning/ComparableVersion.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/versioning/IntegerItem.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/versioning/IntegerItem.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/versioning/Item.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/versioning/Item.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/versioning/ListItem.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/versioning/ListItem.groovy -------------------------------------------------------------------------------- /src/io/wcm/devops/jenkins/pipeline/versioning/StringItem.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/io/wcm/devops/jenkins/pipeline/versioning/StringItem.groovy -------------------------------------------------------------------------------- /src/jenkins-pipeline-library.gdsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/jenkins-pipeline-library.gdsl -------------------------------------------------------------------------------- /src/pipeline.gdsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/src/pipeline.gdsl -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/config/GenericConfigParserTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/config/GenericConfigParserTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/config/GenericConfigUtilsTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/config/GenericConfigUtilsTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/credentials/CredentialParserTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/credentials/CredentialParserTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/credentials/CredentialTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/credentials/CredentialTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/environment/EnvironmentUtilsTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/environment/EnvironmentUtilsTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/job/BuildParameterFactoryTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/job/BuildParameterFactoryTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/managedfiles/ManagedFileParserTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/managedfiles/ManagedFileParserTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/managedfiles/MangedFileTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/managedfiles/MangedFileTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/model/ResultTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/model/ResultTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/model/jenkins/api/JobTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/model/jenkins/api/JobTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/scm/GitRepositoryTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/scm/GitRepositoryTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/shell/CommandBuilderImplTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/shell/CommandBuilderImplTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/shell/MavenCommandBuilderImplTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/shell/MavenCommandBuilderImplTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/shell/ScpCommandBuilderImplTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/shell/ScpCommandBuilderImplTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/shell/ShellUtilsTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/shell/ShellUtilsTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/tools/ansible/RoleRequirementsTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/tools/ansible/RoleRequirementsTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/tools/ansible/RoleTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/tools/ansible/RoleTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/utils/IntegrationTestUtilTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/utils/IntegrationTestUtilTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/utils/ListUtilsTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/utils/ListUtilsTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/utils/NotificationTriggerHelperTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/utils/NotificationTriggerHelperTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/utils/PatternMatcherGlobalMavenSettingsTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/utils/PatternMatcherGlobalMavenSettingsTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/utils/PatternMatcherMavenSettingsTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/utils/PatternMatcherMavenSettingsTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/utils/PatternMatcherSCMCredentialTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/utils/PatternMatcherSCMCredentialTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/utils/PatternMatcherTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/utils/PatternMatcherTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/utils/TypeUtilsTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/utils/TypeUtilsTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/utils/logging/LogLevelTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/utils/logging/LogLevelTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/utils/logging/LoggerCpsScriptTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/utils/logging/LoggerCpsScriptTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/utils/logging/LoggerTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/utils/logging/LoggerTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/utils/maps/MapMergeModeTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/utils/maps/MapMergeModeTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/utils/maps/MapUtilsTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/utils/maps/MapUtilsTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/utils/resources/JsonLibraryResourceTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/utils/resources/JsonLibraryResourceTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/utils/resources/LibraryResourceTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/utils/resources/LibraryResourceTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/utils/resources/YamlLibraryResourceTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/utils/resources/YamlLibraryResourceTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/devops/jenkins/pipeline/versioning/ComparableVersionTest.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/devops/jenkins/pipeline/versioning/ComparableVersionTest.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/BasicStepsMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/BasicStepsMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/CoreStepsMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/CoreStepsMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/CpsScriptMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/CpsScriptMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/CpsScriptTestBase.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/CpsScriptTestBase.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/DSLMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/DSLMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/DSLTestBase.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/DSLTestBase.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/EnvActionImplMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/EnvActionImplMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/JobPropertiesMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/JobPropertiesMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/LibraryIntegrationTestBase.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/LibraryIntegrationTestBase.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/LibraryIntegrationTestContext.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/LibraryIntegrationTestContext.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/RunWrapperMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/RunWrapperMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/StepConstants.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/StepConstants.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/global/lib/SelfSourceRetriever.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/global/lib/SelfSourceRetriever.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/global/lib/SubmoduleSourceRetriever.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/global/lib/SubmoduleSourceRetriever.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/plugins/AnsiColorPluginMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/plugins/AnsiColorPluginMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/plugins/AnsiblePluginMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/plugins/AnsiblePluginMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/plugins/BadgePluginMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/plugins/BadgePluginMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/plugins/ConfigFileProviderPluginMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/plugins/ConfigFileProviderPluginMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/plugins/EmailExtPluginMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/plugins/EmailExtPluginMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/plugins/HTTPRequestPluginMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/plugins/HTTPRequestPluginMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/plugins/JUnitPluginMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/plugins/JUnitPluginMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/plugins/MQTTNotificationPluginMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/plugins/MQTTNotificationPluginMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/plugins/MattermostNotificationPluginMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/plugins/MattermostNotificationPluginMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/plugins/PipelineStageStepPluginMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/plugins/PipelineStageStepPluginMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/plugins/PipelineUtilityStepsPluginMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/plugins/PipelineUtilityStepsPluginMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/plugins/SSHAgentPluginMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/plugins/SSHAgentPluginMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/plugins/TeamsNotificationPluginMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/plugins/TeamsNotificationPluginMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/plugins/TimestamperPluginMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/plugins/TimestamperPluginMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/plugins/VersionNumberPluginMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/plugins/VersionNumberPluginMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/plugins/WarningsNGPluginMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/plugins/WarningsNGPluginMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/plugins/WorkflowDurableTaskStepPluginMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/plugins/WorkflowDurableTaskStepPluginMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/plugins/credentials/CredentialsPluginMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/plugins/credentials/CredentialsPluginMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/plugins/credentials/UsernamePasswordMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/plugins/credentials/UsernamePasswordMock.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/recorder/StepRecorder.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/recorder/StepRecorder.groovy -------------------------------------------------------------------------------- /test/io/wcm/testing/jenkins/pipeline/recorder/StepRecorderAssert.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/io/wcm/testing/jenkins/pipeline/recorder/StepRecorderAssert.groovy -------------------------------------------------------------------------------- /test/jenkins/plugins/http_request/ResponseContentSupplierMock.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/jenkins/plugins/http_request/ResponseContentSupplierMock.groovy -------------------------------------------------------------------------------- /test/resources/credentials/http/credentials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/resources/credentials/http/credentials.json -------------------------------------------------------------------------------- /test/resources/credentials/parser-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/resources/credentials/parser-test.json -------------------------------------------------------------------------------- /test/resources/credentials/scm/credentials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/resources/credentials/scm/credentials.json -------------------------------------------------------------------------------- /test/resources/credentials/ssh/credentials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/resources/credentials/ssh/credentials.json -------------------------------------------------------------------------------- /test/resources/example-resource.json: -------------------------------------------------------------------------------- 1 | { 2 | "foo": "bar" 3 | } -------------------------------------------------------------------------------- /test/resources/example-resource.txt: -------------------------------------------------------------------------------- 1 | foobar -------------------------------------------------------------------------------- /test/resources/invalid.json: -------------------------------------------------------------------------------- 1 | { 2 | "notvalid": true -------------------------------------------------------------------------------- /test/resources/jenkins-pipeline-library/config/generic-config-parser-testdata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/resources/jenkins-pipeline-library/config/generic-config-parser-testdata.yaml -------------------------------------------------------------------------------- /test/resources/jenkins-pipeline-library/config/notify/mail.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/resources/jenkins-pipeline-library/config/notify/mail.yaml -------------------------------------------------------------------------------- /test/resources/jenkins-pipeline-library/config/notify/mattermost.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/resources/jenkins-pipeline-library/config/notify/mattermost.yaml -------------------------------------------------------------------------------- /test/resources/jenkins-pipeline-library/config/notify/mqtt.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/resources/jenkins-pipeline-library/config/notify/mqtt.yaml -------------------------------------------------------------------------------- /test/resources/jenkins-pipeline-library/config/notify/teams.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/resources/jenkins-pipeline-library/config/notify/teams.yaml -------------------------------------------------------------------------------- /test/resources/jenkins-pipeline-library/managedScripts/shell/maven/purge-snapshots.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | echo "hello world" 3 | -------------------------------------------------------------------------------- /test/resources/jenkinsRestApi/findJobsByNameRegex-sample001.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/resources/jenkinsRestApi/findJobsByNameRegex-sample001.json -------------------------------------------------------------------------------- /test/resources/managedfiles/maven/global-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/resources/managedfiles/maven/global-settings.json -------------------------------------------------------------------------------- /test/resources/managedfiles/maven/parser-test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/resources/managedfiles/maven/parser-test.json -------------------------------------------------------------------------------- /test/resources/managedfiles/maven/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/resources/managedfiles/maven/settings.json -------------------------------------------------------------------------------- /test/resources/managedfiles/npm/npm-config-userconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/resources/managedfiles/npm/npm-config-userconfig.json -------------------------------------------------------------------------------- /test/resources/managedfiles/ruby/bundle-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/resources/managedfiles/ruby/bundle-config.json -------------------------------------------------------------------------------- /test/resources/mavenRelease/invalid-maven-release-version-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/resources/mavenRelease/invalid-maven-release-version-pom.xml -------------------------------------------------------------------------------- /test/resources/mavenRelease/invalid-maven-scm-provider-gitexe-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/resources/mavenRelease/invalid-maven-scm-provider-gitexe-pom.xml -------------------------------------------------------------------------------- /test/resources/mavenRelease/valid-effective-pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/resources/mavenRelease/valid-effective-pom.xml -------------------------------------------------------------------------------- /test/resources/tools/ansible/not.existingrole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/resources/tools/ansible/not.existingrole.json -------------------------------------------------------------------------------- /test/resources/tools/ansible/requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/resources/tools/ansible/requirements.yml -------------------------------------------------------------------------------- /test/resources/tools/ansible/wcm_io_devops.jenkins_facts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/resources/tools/ansible/wcm_io_devops.jenkins_facts.json -------------------------------------------------------------------------------- /test/resources/tools/ansible/wcm_io_devops.jenkins_pipeline_library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/resources/tools/ansible/wcm_io_devops.jenkins_pipeline_library.json -------------------------------------------------------------------------------- /test/resources/tools/ansible/wcm_io_devops.jenkins_plugins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/resources/tools/ansible/wcm_io_devops.jenkins_plugins.json -------------------------------------------------------------------------------- /test/resources/yaml/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/resources/yaml/valid.yaml -------------------------------------------------------------------------------- /test/vars/ansible/AnsibleCheckoutRolesIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/ansible/AnsibleCheckoutRolesIT.groovy -------------------------------------------------------------------------------- /test/vars/ansible/AnsibleIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/ansible/AnsibleIT.groovy -------------------------------------------------------------------------------- /test/vars/ansible/AnsibleInstallRolesIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/ansible/AnsibleInstallRolesIT.groovy -------------------------------------------------------------------------------- /test/vars/ansible/AnsiblePlaybookIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/ansible/AnsiblePlaybookIT.groovy -------------------------------------------------------------------------------- /test/vars/ansible/jobs/ansibleCheckoutRolesWithConfigTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/ansible/jobs/ansibleCheckoutRolesWithConfigTestJob.groovy -------------------------------------------------------------------------------- /test/vars/ansible/jobs/ansibleCheckoutRolesWithPathTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/ansible/jobs/ansibleCheckoutRolesWithPathTestJob.groovy -------------------------------------------------------------------------------- /test/vars/ansible/jobs/ansibleExecPlaybookCustomConfigurationTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/ansible/jobs/ansibleExecPlaybookCustomConfigurationTestJob.groovy -------------------------------------------------------------------------------- /test/vars/ansible/jobs/ansibleExecPlaybookInjectParamsTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/ansible/jobs/ansibleExecPlaybookInjectParamsTestJob.groovy -------------------------------------------------------------------------------- /test/vars/ansible/jobs/ansibleExecPlaybookMinimalTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/ansible/jobs/ansibleExecPlaybookMinimalTestJob.groovy -------------------------------------------------------------------------------- /test/vars/ansible/jobs/ansibleGetGalaxyRoleInfoTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/ansible/jobs/ansibleGetGalaxyRoleInfoTestJob.groovy -------------------------------------------------------------------------------- /test/vars/ansible/jobs/ansibleGetGalaxyRoleInfoWithErrorsTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/ansible/jobs/ansibleGetGalaxyRoleInfoWithErrorsTestJob.groovy -------------------------------------------------------------------------------- /test/vars/ansible/jobs/ansibleInstallRolesCustomTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/ansible/jobs/ansibleInstallRolesCustomTestJob.groovy -------------------------------------------------------------------------------- /test/vars/ansible/jobs/ansibleInstallRolesDefaultTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/ansible/jobs/ansibleInstallRolesDefaultTestJob.groovy -------------------------------------------------------------------------------- /test/vars/ansible/jobs/ansibleWrapInstallationTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/ansible/jobs/ansibleWrapInstallationTestJob.groovy -------------------------------------------------------------------------------- /test/vars/checkoutScm/CheckoutScmIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/checkoutScm/CheckoutScmIT.groovy -------------------------------------------------------------------------------- /test/vars/checkoutScm/jobs/checkoutScmCustomVariant1Job.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/checkoutScm/jobs/checkoutScmCustomVariant1Job.groovy -------------------------------------------------------------------------------- /test/vars/checkoutScm/jobs/checkoutScmCustomVariant2Job.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/checkoutScm/jobs/checkoutScmCustomVariant2Job.groovy -------------------------------------------------------------------------------- /test/vars/checkoutScm/jobs/checkoutScmCustomVariant3Job.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/checkoutScm/jobs/checkoutScmCustomVariant3Job.groovy -------------------------------------------------------------------------------- /test/vars/checkoutScm/jobs/checkoutScmDefaultsJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/checkoutScm/jobs/checkoutScmDefaultsJob.groovy -------------------------------------------------------------------------------- /test/vars/checkoutScm/jobs/checkoutScmEmptyCredentialsJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/checkoutScm/jobs/checkoutScmEmptyCredentialsJob.groovy -------------------------------------------------------------------------------- /test/vars/checkoutScm/jobs/checkoutWithScmVarJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/checkoutScm/jobs/checkoutWithScmVarJob.groovy -------------------------------------------------------------------------------- /test/vars/conditionalStage/ConditionalStageIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/conditionalStage/ConditionalStageIT.groovy -------------------------------------------------------------------------------- /test/vars/conditionalStage/jobs/shouldNotRunConditionalStageTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/conditionalStage/jobs/shouldNotRunConditionalStageTestJob.groovy -------------------------------------------------------------------------------- /test/vars/conditionalStage/jobs/shouldRunConditionalStageTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/conditionalStage/jobs/shouldRunConditionalStageTestJob.groovy -------------------------------------------------------------------------------- /test/vars/credentials/lookupHttpCredential/CredentialsHttpIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/credentials/lookupHttpCredential/CredentialsHttpIT.groovy -------------------------------------------------------------------------------- /test/vars/credentials/lookupHttpCredential/jobs/shouldLookupHttpCredentialTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/credentials/lookupHttpCredential/jobs/shouldLookupHttpCredentialTestJob.groovy -------------------------------------------------------------------------------- /test/vars/credentials/lookupHttpCredential/jobs/shouldNotLookupHttpCredentialTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/credentials/lookupHttpCredential/jobs/shouldNotLookupHttpCredentialTestJob.groovy -------------------------------------------------------------------------------- /test/vars/credentials/lookupScmCredential/CredentialsScmIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/credentials/lookupScmCredential/CredentialsScmIT.groovy -------------------------------------------------------------------------------- /test/vars/credentials/lookupScmCredential/jobs/shouldLookupScmCredentialTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/credentials/lookupScmCredential/jobs/shouldLookupScmCredentialTestJob.groovy -------------------------------------------------------------------------------- /test/vars/credentials/lookupScmCredential/jobs/shouldNotLookupScmCredentialTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/credentials/lookupScmCredential/jobs/shouldNotLookupScmCredentialTestJob.groovy -------------------------------------------------------------------------------- /test/vars/credentials/lookupSshCredential/CredentialsSshIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/credentials/lookupSshCredential/CredentialsSshIT.groovy -------------------------------------------------------------------------------- /test/vars/credentials/lookupSshCredential/jobs/shouldLookupSshCredentialTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/credentials/lookupSshCredential/jobs/shouldLookupSshCredentialTestJob.groovy -------------------------------------------------------------------------------- /test/vars/credentials/lookupSshCredential/jobs/shouldNotLookupSshCredentialTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/credentials/lookupSshCredential/jobs/shouldNotLookupSshCredentialTestJob.groovy -------------------------------------------------------------------------------- /test/vars/execMaven/ExecMavenIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/execMaven/ExecMavenIT.groovy -------------------------------------------------------------------------------- /test/vars/execMaven/jobs/execMavenCustomCommandTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/execMaven/jobs/execMavenCustomCommandTestJob.groovy -------------------------------------------------------------------------------- /test/vars/execMaven/jobs/execMavenCustomVariant1Job.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/execMaven/jobs/execMavenCustomVariant1Job.groovy -------------------------------------------------------------------------------- /test/vars/execMaven/jobs/execMavenCustomVariant2Job.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/execMaven/jobs/execMavenCustomVariant2Job.groovy -------------------------------------------------------------------------------- /test/vars/execMaven/jobs/execMavenDefaultJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/execMaven/jobs/execMavenDefaultJob.groovy -------------------------------------------------------------------------------- /test/vars/execMaven/jobs/execMavenGlobalAndLocalSettingsJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/execMaven/jobs/execMavenGlobalAndLocalSettingsJob.groovy -------------------------------------------------------------------------------- /test/vars/execMaven/jobs/execMavenGlobalSettingsJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/execMaven/jobs/execMavenGlobalSettingsJob.groovy -------------------------------------------------------------------------------- /test/vars/execMaven/jobs/execMavenLocalSettingsJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/execMaven/jobs/execMavenLocalSettingsJob.groovy -------------------------------------------------------------------------------- /test/vars/execMaven/jobs/execMavenWithBuildParametersTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/execMaven/jobs/execMavenWithBuildParametersTestJob.groovy -------------------------------------------------------------------------------- /test/vars/execMaven/jobs/execMavenWithNPMAndRubyTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/execMaven/jobs/execMavenWithNPMAndRubyTestJob.groovy -------------------------------------------------------------------------------- /test/vars/execMaven/jobs/execMavenWithReturnStatus.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/execMaven/jobs/execMavenWithReturnStatus.groovy -------------------------------------------------------------------------------- /test/vars/execMaven/jobs/execMavenWithReturnStdout.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/execMaven/jobs/execMavenWithReturnStdout.groovy -------------------------------------------------------------------------------- /test/vars/execMaven/jobs/execMavenWithSettingsViaScmUrlFromEnvJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/execMaven/jobs/execMavenWithSettingsViaScmUrlFromEnvJob.groovy -------------------------------------------------------------------------------- /test/vars/execMavenRelease/ExecMavenReleaseIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/execMavenRelease/ExecMavenReleaseIT.groovy -------------------------------------------------------------------------------- /test/vars/execMavenRelease/jobs/shouldExecMavenReleaseWithKeyAgentTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/execMavenRelease/jobs/shouldExecMavenReleaseWithKeyAgentTestJob.groovy -------------------------------------------------------------------------------- /test/vars/execMavenRelease/jobs/shouldFailWhenScmUrlIsNotGitSSHTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/execMavenRelease/jobs/shouldFailWhenScmUrlIsNotGitSSHTestJob.groovy -------------------------------------------------------------------------------- /test/vars/execMavenRelease/jobs/shouldFailWhenScmUrlIsNullTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/execMavenRelease/jobs/shouldFailWhenScmUrlIsNullTestJob.groovy -------------------------------------------------------------------------------- /test/vars/execMavenRelease/jobs/shouldFailWithNoBranchEnvVarTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/execMavenRelease/jobs/shouldFailWithNoBranchEnvVarTestJob.groovy -------------------------------------------------------------------------------- /test/vars/execMavenRelease/jobs/shouldFailWithNotAllowedBranchNameTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/execMavenRelease/jobs/shouldFailWithNotAllowedBranchNameTestJob.groovy -------------------------------------------------------------------------------- /test/vars/execNpm/ExecNpmIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/execNpm/ExecNpmIT.groovy -------------------------------------------------------------------------------- /test/vars/execNpm/jobs/execNpmCustomAndAutoLookupTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/execNpm/jobs/execNpmCustomAndAutoLookupTestJob.groovy -------------------------------------------------------------------------------- /test/vars/execNpm/jobs/execNpmDefaultTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/execNpm/jobs/execNpmDefaultTestJob.groovy -------------------------------------------------------------------------------- /test/vars/getScmUrl/GetScmUrlIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/getScmUrl/GetScmUrlIT.groovy -------------------------------------------------------------------------------- /test/vars/getScmUrl/jobs/getScmUrlFromConfigTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/getScmUrl/jobs/getScmUrlFromConfigTestJob.groovy -------------------------------------------------------------------------------- /test/vars/getScmUrl/jobs/getScmUrlFromEnvVarTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/getScmUrl/jobs/getScmUrlFromEnvVarTestJob.groovy -------------------------------------------------------------------------------- /test/vars/getScmUrl/jobs/getScmUrlJobNameFallbackTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/getScmUrl/jobs/getScmUrlJobNameFallbackTestJob.groovy -------------------------------------------------------------------------------- /test/vars/gitTools/GitToolsIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/gitTools/GitToolsIT.groovy -------------------------------------------------------------------------------- /test/vars/gitTools/getBranch/GitToolsGetBranchIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/gitTools/getBranch/GitToolsGetBranchIT.groovy -------------------------------------------------------------------------------- /test/vars/gitTools/jobs/getFetchOriginTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/gitTools/jobs/getFetchOriginTestJob.groovy -------------------------------------------------------------------------------- /test/vars/gitTools/jobs/getParentBranchTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/gitTools/jobs/getParentBranchTestJob.groovy -------------------------------------------------------------------------------- /test/vars/gitTools/jobs/getPushOriginTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/gitTools/jobs/getPushOriginTestJob.groovy -------------------------------------------------------------------------------- /test/vars/gitTools/jobs/setGitBranchTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/gitTools/jobs/setGitBranchTestJob.groovy -------------------------------------------------------------------------------- /test/vars/gitTools/mirrorHttps/GitToolsMirrorHttpsIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/gitTools/mirrorHttps/GitToolsMirrorHttpsIT.groovy -------------------------------------------------------------------------------- /test/vars/gitTools/mirrorHttps/jobs/shouldMirrorRepositoryWithCredentialAutoLookupTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/gitTools/mirrorHttps/jobs/shouldMirrorRepositoryWithCredentialAutoLookupTestJob.groovy -------------------------------------------------------------------------------- /test/vars/gitTools/mirrorHttps/jobs/shouldMirrorRepositoryWithProvidedCredentialsTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/gitTools/mirrorHttps/jobs/shouldMirrorRepositoryWithProvidedCredentialsTestJob.groovy -------------------------------------------------------------------------------- /test/vars/gitTools/mirrorSsh/GitToolsMirrorSshIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/gitTools/mirrorSsh/GitToolsMirrorSshIT.groovy -------------------------------------------------------------------------------- /test/vars/gitTools/mirrorSsh/jobs/shouldFailOnIdenticalServersVariant1TestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/gitTools/mirrorSsh/jobs/shouldFailOnIdenticalServersVariant1TestJob.groovy -------------------------------------------------------------------------------- /test/vars/gitTools/mirrorSsh/jobs/shouldFailOnIdenticalServersVariant2TestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/gitTools/mirrorSsh/jobs/shouldFailOnIdenticalServersVariant2TestJob.groovy -------------------------------------------------------------------------------- /test/vars/gitTools/mirrorSsh/jobs/shouldFailOnInvalidSrcRepoTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/gitTools/mirrorSsh/jobs/shouldFailOnInvalidSrcRepoTestJob.groovy -------------------------------------------------------------------------------- /test/vars/gitTools/mirrorSsh/jobs/shouldFailOnInvalidTargetRepoTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/gitTools/mirrorSsh/jobs/shouldFailOnInvalidTargetRepoTestJob.groovy -------------------------------------------------------------------------------- /test/vars/gitTools/mirrorSsh/jobs/shouldMirrorRepositoryWithCredentialAutoLookupTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/gitTools/mirrorSsh/jobs/shouldMirrorRepositoryWithCredentialAutoLookupTestJob.groovy -------------------------------------------------------------------------------- /test/vars/gitTools/mirrorSsh/jobs/shouldMirrorRepositoryWithProvidedCredentialsTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/gitTools/mirrorSsh/jobs/shouldMirrorRepositoryWithProvidedCredentialsTestJob.groovy -------------------------------------------------------------------------------- /test/vars/im/mattermost/ImMattermostIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/im/mattermost/ImMattermostIT.groovy -------------------------------------------------------------------------------- /test/vars/im/mattermost/jobs/imMattermostConfigJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/im/mattermost/jobs/imMattermostConfigJob.groovy -------------------------------------------------------------------------------- /test/vars/im/mattermost/jobs/imMattermostCustomEndpointCredentialJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/im/mattermost/jobs/imMattermostCustomEndpointCredentialJob.groovy -------------------------------------------------------------------------------- /test/vars/im/mattermost/jobs/imMattermostCustomEndpointJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/im/mattermost/jobs/imMattermostCustomEndpointJob.groovy -------------------------------------------------------------------------------- /test/vars/im/mattermost/jobs/imMattermostDefaultsJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/im/mattermost/jobs/imMattermostDefaultsJob.groovy -------------------------------------------------------------------------------- /test/vars/im/teams/ImTeamsIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/im/teams/ImTeamsIT.groovy -------------------------------------------------------------------------------- /test/vars/im/teams/jobs/imTeamsConfigJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/im/teams/jobs/imTeamsConfigJob.groovy -------------------------------------------------------------------------------- /test/vars/im/teams/jobs/imTeamsCustomWebhookUrlCredentialJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/im/teams/jobs/imTeamsCustomWebhookUrlCredentialJob.groovy -------------------------------------------------------------------------------- /test/vars/im/teams/jobs/imTeamsCustomWebhookUrlJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/im/teams/jobs/imTeamsCustomWebhookUrlJob.groovy -------------------------------------------------------------------------------- /test/vars/im/teams/jobs/imTeamsDefaultsJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/im/teams/jobs/imTeamsDefaultsJob.groovy -------------------------------------------------------------------------------- /test/vars/jenkinsRestApi/JenkinsRestApiIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/jenkinsRestApi/JenkinsRestApiIT.groovy -------------------------------------------------------------------------------- /test/vars/jenkinsRestApi/jobs/shouldFindAllJobsTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/jenkinsRestApi/jobs/shouldFindAllJobsTestJob.groovy -------------------------------------------------------------------------------- /test/vars/jenkinsRestApi/jobs/shouldFindNoJobTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/jenkinsRestApi/jobs/shouldFindNoJobTestJob.groovy -------------------------------------------------------------------------------- /test/vars/jenkinsRestApi/jobs/shouldFindOneJobTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/jenkinsRestApi/jobs/shouldFindOneJobTestJob.groovy -------------------------------------------------------------------------------- /test/vars/libraryIntegrationTestBase/LibraryIntegrationTestBaseIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/libraryIntegrationTestBase/LibraryIntegrationTestBaseIT.groovy -------------------------------------------------------------------------------- /test/vars/libraryIntegrationTestBase/jobs/retryTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/libraryIntegrationTestBase/jobs/retryTestJob.groovy -------------------------------------------------------------------------------- /test/vars/libraryIntegrationTestBase/jobs/shouldFindDescendandsWithoutGlobTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/libraryIntegrationTestBase/jobs/shouldFindDescendandsWithoutGlobTestJob.groovy -------------------------------------------------------------------------------- /test/vars/libraryIntegrationTestBase/jobs/shouldFindMultipleFilesTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/libraryIntegrationTestBase/jobs/shouldFindMultipleFilesTestJob.groovy -------------------------------------------------------------------------------- /test/vars/libraryIntegrationTestBase/jobs/shouldFindNoFileTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/libraryIntegrationTestBase/jobs/shouldFindNoFileTestJob.groovy -------------------------------------------------------------------------------- /test/vars/libraryIntegrationTestBase/jobs/shouldFindOneFileTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/libraryIntegrationTestBase/jobs/shouldFindOneFileTestJob.groovy -------------------------------------------------------------------------------- /test/vars/logging/LoggingIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/logging/LoggingIT.groovy -------------------------------------------------------------------------------- /test/vars/logging/jobs/shouldInitializeWithinITEnvironmentTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/logging/jobs/shouldInitializeWithinITEnvironmentTestJob.groovy -------------------------------------------------------------------------------- /test/vars/managedScripts/MangedJenkinsShellScriptIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/managedScripts/MangedJenkinsShellScriptIT.groovy -------------------------------------------------------------------------------- /test/vars/managedScripts/MangedPipelineShellScriptIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/managedScripts/MangedPipelineShellScriptIT.groovy -------------------------------------------------------------------------------- /test/vars/managedScripts/jobs/jenkinsShellScript/shouldExecuteJenkinsShellScriptWithDefaultsTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/managedScripts/jobs/jenkinsShellScript/shouldExecuteJenkinsShellScriptWithDefaultsTestJob.groovy -------------------------------------------------------------------------------- /test/vars/managedScripts/jobs/jenkinsShellScript/shouldExecuteJenkinsShellScriptWithReturnStatusTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/managedScripts/jobs/jenkinsShellScript/shouldExecuteJenkinsShellScriptWithReturnStatusTestJob.groovy -------------------------------------------------------------------------------- /test/vars/managedScripts/jobs/jenkinsShellScript/shouldExecuteJenkinsShellScriptWithReturnStdoutStatusTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/managedScripts/jobs/jenkinsShellScript/shouldExecuteJenkinsShellScriptWithReturnStdoutStatusTestJob.groovy -------------------------------------------------------------------------------- /test/vars/managedScripts/jobs/jenkinsShellScript/shouldExecuteJenkinsShellScriptWithReturnStdoutTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/managedScripts/jobs/jenkinsShellScript/shouldExecuteJenkinsShellScriptWithReturnStdoutTestJob.groovy -------------------------------------------------------------------------------- /test/vars/managedScripts/jobs/jenkinsShellScript/shouldExecuteJenkinsShellScriptWithoutCommandBuilderTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/managedScripts/jobs/jenkinsShellScript/shouldExecuteJenkinsShellScriptWithoutCommandBuilderTestJob.groovy -------------------------------------------------------------------------------- /test/vars/managedScripts/jobs/pipelineShellScript/shouldExecutePipelineShellScriptWithDefaultsTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/managedScripts/jobs/pipelineShellScript/shouldExecutePipelineShellScriptWithDefaultsTestJob.groovy -------------------------------------------------------------------------------- /test/vars/managedScripts/jobs/pipelineShellScript/shouldExecutePipelineShellScriptWithReturnStatusTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/managedScripts/jobs/pipelineShellScript/shouldExecutePipelineShellScriptWithReturnStatusTestJob.groovy -------------------------------------------------------------------------------- /test/vars/managedScripts/jobs/pipelineShellScript/shouldExecutePipelineShellScriptWithReturnStdoutStatusTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/managedScripts/jobs/pipelineShellScript/shouldExecutePipelineShellScriptWithReturnStdoutStatusTestJob.groovy -------------------------------------------------------------------------------- /test/vars/managedScripts/jobs/pipelineShellScript/shouldExecutePipelineShellScriptWithReturnStdoutTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/managedScripts/jobs/pipelineShellScript/shouldExecutePipelineShellScriptWithReturnStdoutTestJob.groovy -------------------------------------------------------------------------------- /test/vars/managedScripts/jobs/pipelineShellScript/shouldExecutePipelineShellScriptWithoutCommandBuilderTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/managedScripts/jobs/pipelineShellScript/shouldExecutePipelineShellScriptWithoutCommandBuilderTestJob.groovy -------------------------------------------------------------------------------- /test/vars/maven/MavenIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/maven/MavenIT.groovy -------------------------------------------------------------------------------- /test/vars/maven/jobs/purgeSnapshotsCustomMapTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/maven/jobs/purgeSnapshotsCustomMapTestJob.groovy -------------------------------------------------------------------------------- /test/vars/maven/jobs/purgeSnapshotsCustomTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/maven/jobs/purgeSnapshotsCustomTestJob.groovy -------------------------------------------------------------------------------- /test/vars/maven/jobs/purgeSnapshotsDefaultsTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/maven/jobs/purgeSnapshotsDefaultsTestJob.groovy -------------------------------------------------------------------------------- /test/vars/notify/mail/NotifyMailCustomIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/mail/NotifyMailCustomIT.groovy -------------------------------------------------------------------------------- /test/vars/notify/mail/NotifyMailCustomRecipientsIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/mail/NotifyMailCustomRecipientsIT.groovy -------------------------------------------------------------------------------- /test/vars/notify/mail/NotifyMailDefaultsIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/mail/NotifyMailDefaultsIT.groovy -------------------------------------------------------------------------------- /test/vars/notify/mail/NotifyMailDisabledIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/mail/NotifyMailDisabledIT.groovy -------------------------------------------------------------------------------- /test/vars/notify/mail/NotifyMailGenericConfigIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/mail/NotifyMailGenericConfigIT.groovy -------------------------------------------------------------------------------- /test/vars/notify/mail/jobs/notifyMailCustomJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/mail/jobs/notifyMailCustomJob.groovy -------------------------------------------------------------------------------- /test/vars/notify/mail/jobs/notifyMailCustomRecipientsJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/mail/jobs/notifyMailCustomRecipientsJob.groovy -------------------------------------------------------------------------------- /test/vars/notify/mail/jobs/notifyMailDefaultsJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/mail/jobs/notifyMailDefaultsJob.groovy -------------------------------------------------------------------------------- /test/vars/notify/mail/jobs/notifyMailDisabledTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/mail/jobs/notifyMailDisabledTestJob.groovy -------------------------------------------------------------------------------- /test/vars/notify/mattermost/NotifyMattermostCustomIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/mattermost/NotifyMattermostCustomIT.groovy -------------------------------------------------------------------------------- /test/vars/notify/mattermost/NotifyMattermostDefaultsIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/mattermost/NotifyMattermostDefaultsIT.groovy -------------------------------------------------------------------------------- /test/vars/notify/mattermost/NotifyMattermostDisabledIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/mattermost/NotifyMattermostDisabledIT.groovy -------------------------------------------------------------------------------- /test/vars/notify/mattermost/NotifyMattermostIntegrationTestBase.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/mattermost/NotifyMattermostIntegrationTestBase.groovy -------------------------------------------------------------------------------- /test/vars/notify/mattermost/jobs/notifyMattermostCustomJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/mattermost/jobs/notifyMattermostCustomJob.groovy -------------------------------------------------------------------------------- /test/vars/notify/mattermost/jobs/notifyMattermostDefaultsJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/mattermost/jobs/notifyMattermostDefaultsJob.groovy -------------------------------------------------------------------------------- /test/vars/notify/mattermost/jobs/notifyMattermostDisabledJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/mattermost/jobs/notifyMattermostDisabledJob.groovy -------------------------------------------------------------------------------- /test/vars/notify/mqtt/NotifyMqttIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/mqtt/NotifyMqttIT.groovy -------------------------------------------------------------------------------- /test/vars/notify/mqtt/jobs/notifyMqttCustomJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/mqtt/jobs/notifyMqttCustomJob.groovy -------------------------------------------------------------------------------- /test/vars/notify/mqtt/jobs/notifyMqttDefaultsJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/mqtt/jobs/notifyMqttDefaultsJob.groovy -------------------------------------------------------------------------------- /test/vars/notify/teams/NotifyTeamsCustomIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/teams/NotifyTeamsCustomIT.groovy -------------------------------------------------------------------------------- /test/vars/notify/teams/NotifyTeamsDefaultsIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/teams/NotifyTeamsDefaultsIT.groovy -------------------------------------------------------------------------------- /test/vars/notify/teams/NotifyTeamsDisabledIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/teams/NotifyTeamsDisabledIT.groovy -------------------------------------------------------------------------------- /test/vars/notify/teams/NotifyTeamsIntegrationTestBase.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/teams/NotifyTeamsIntegrationTestBase.groovy -------------------------------------------------------------------------------- /test/vars/notify/teams/jobs/notifyTeamsCustomJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/teams/jobs/notifyTeamsCustomJob.groovy -------------------------------------------------------------------------------- /test/vars/notify/teams/jobs/notifyTeamsDefaultsJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/teams/jobs/notifyTeamsDefaultsJob.groovy -------------------------------------------------------------------------------- /test/vars/notify/teams/jobs/notifyTeamsDisabledJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/notify/teams/jobs/notifyTeamsDisabledJob.groovy -------------------------------------------------------------------------------- /test/vars/setBuildName/SetBuildNameIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/setBuildName/SetBuildNameIT.groovy -------------------------------------------------------------------------------- /test/vars/setBuildName/jobs/setBuildNameJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/setBuildName/jobs/setBuildNameJob.groovy -------------------------------------------------------------------------------- /test/vars/setScmUrl/SetScmUrlIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/setScmUrl/SetScmUrlIT.groovy -------------------------------------------------------------------------------- /test/vars/setScmUrl/jobs/setScmUrlFromShellJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/setScmUrl/jobs/setScmUrlFromShellJob.groovy -------------------------------------------------------------------------------- /test/vars/setScmUrl/jobs/setScmUrlWithConfigJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/setScmUrl/jobs/setScmUrlWithConfigJob.groovy -------------------------------------------------------------------------------- /test/vars/setupTools/SetupToolsIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/setupTools/SetupToolsIT.groovy -------------------------------------------------------------------------------- /test/vars/setupTools/jobs/shouldFailWhenToolNotFound.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/setupTools/jobs/shouldFailWhenToolNotFound.groovy -------------------------------------------------------------------------------- /test/vars/setupTools/jobs/shouldUseCustomEnvVarsTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/setupTools/jobs/shouldUseCustomEnvVarsTestJob.groovy -------------------------------------------------------------------------------- /test/vars/setupTools/jobs/shouldUseDefaultEnvVarsTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/setupTools/jobs/shouldUseDefaultEnvVarsTestJob.groovy -------------------------------------------------------------------------------- /test/vars/sshAgentWrapper/SSHAgentWrapperIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/sshAgentWrapper/SSHAgentWrapperIT.groovy -------------------------------------------------------------------------------- /test/vars/sshAgentWrapper/jobs/shouldNotWrapWithSSHAgent.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/sshAgentWrapper/jobs/shouldNotWrapWithSSHAgent.groovy -------------------------------------------------------------------------------- /test/vars/sshAgentWrapper/jobs/shouldWrapWithCommandBuilderTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/sshAgentWrapper/jobs/shouldWrapWithCommandBuilderTestJob.groovy -------------------------------------------------------------------------------- /test/vars/sshAgentWrapper/jobs/shouldWrapWithMultipleSSHTargetsTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/sshAgentWrapper/jobs/shouldWrapWithMultipleSSHTargetsTestJob.groovy -------------------------------------------------------------------------------- /test/vars/sshAgentWrapper/jobs/shouldWrapWithStringSSHTarget.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/sshAgentWrapper/jobs/shouldWrapWithStringSSHTarget.groovy -------------------------------------------------------------------------------- /test/vars/transferScp/TransferScpIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/transferScp/TransferScpIT.groovy -------------------------------------------------------------------------------- /test/vars/transferScp/jobs/transferScpRecursiveTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/transferScp/jobs/transferScpRecursiveTestJob.groovy -------------------------------------------------------------------------------- /test/vars/transferScp/jobs/transferScpSingleTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/transferScp/jobs/transferScpSingleTestJob.groovy -------------------------------------------------------------------------------- /test/vars/transferScp/jobs/transferScpWithMinimalConfiguration.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/transferScp/jobs/transferScpWithMinimalConfiguration.groovy -------------------------------------------------------------------------------- /test/vars/wrappers/WrappersColorIT.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/wrappers/WrappersColorIT.groovy -------------------------------------------------------------------------------- /test/vars/wrappers/jobs/shouldWrapColorMultiWithConfigTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/wrappers/jobs/shouldWrapColorMultiWithConfigTestJob.groovy -------------------------------------------------------------------------------- /test/vars/wrappers/jobs/shouldWrapColorOnlyOnceWithSameColorModeTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/wrappers/jobs/shouldWrapColorOnlyOnceWithSameColorModeTestJob.groovy -------------------------------------------------------------------------------- /test/vars/wrappers/jobs/shouldWrapColorTestJob.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/test/vars/wrappers/jobs/shouldWrapColorTestJob.groovy -------------------------------------------------------------------------------- /vars/ansible.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/ansible.groovy -------------------------------------------------------------------------------- /vars/ansible.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/ansible.md -------------------------------------------------------------------------------- /vars/checkoutScm.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/checkoutScm.groovy -------------------------------------------------------------------------------- /vars/checkoutScm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/checkoutScm.md -------------------------------------------------------------------------------- /vars/conditionalStage.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/conditionalStage.groovy -------------------------------------------------------------------------------- /vars/conditionalStage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/conditionalStage.md -------------------------------------------------------------------------------- /vars/credentials.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/credentials.groovy -------------------------------------------------------------------------------- /vars/credentials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/credentials.md -------------------------------------------------------------------------------- /vars/execMaven.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/execMaven.groovy -------------------------------------------------------------------------------- /vars/execMaven.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/execMaven.md -------------------------------------------------------------------------------- /vars/execMavenRelease.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/execMavenRelease.groovy -------------------------------------------------------------------------------- /vars/execMavenRelease.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/execMavenRelease.md -------------------------------------------------------------------------------- /vars/execNpm.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/execNpm.groovy -------------------------------------------------------------------------------- /vars/execNpm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/execNpm.md -------------------------------------------------------------------------------- /vars/genericConfig.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/genericConfig.groovy -------------------------------------------------------------------------------- /vars/genericConfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/genericConfig.md -------------------------------------------------------------------------------- /vars/getScmUrl.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/getScmUrl.groovy -------------------------------------------------------------------------------- /vars/getScmUrl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/getScmUrl.md -------------------------------------------------------------------------------- /vars/gitTools.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/gitTools.groovy -------------------------------------------------------------------------------- /vars/gitTools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/gitTools.md -------------------------------------------------------------------------------- /vars/im.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/im.groovy -------------------------------------------------------------------------------- /vars/im.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/im.md -------------------------------------------------------------------------------- /vars/integrationTestUtils.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/integrationTestUtils.groovy -------------------------------------------------------------------------------- /vars/integrationTestUtils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/integrationTestUtils.md -------------------------------------------------------------------------------- /vars/jenkinsRestApi.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/jenkinsRestApi.groovy -------------------------------------------------------------------------------- /vars/jenkinsRestApi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/jenkinsRestApi.md -------------------------------------------------------------------------------- /vars/managedScripts.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/managedScripts.groovy -------------------------------------------------------------------------------- /vars/managedScripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/managedScripts.md -------------------------------------------------------------------------------- /vars/maven.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/maven.groovy -------------------------------------------------------------------------------- /vars/maven.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/maven.md -------------------------------------------------------------------------------- /vars/notify.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/notify.groovy -------------------------------------------------------------------------------- /vars/notify.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/notify.md -------------------------------------------------------------------------------- /vars/setBuildName.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/setBuildName.groovy -------------------------------------------------------------------------------- /vars/setBuildName.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/setBuildName.md -------------------------------------------------------------------------------- /vars/setScmUrl.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/setScmUrl.groovy -------------------------------------------------------------------------------- /vars/setScmUrl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/setScmUrl.md -------------------------------------------------------------------------------- /vars/setupTools.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/setupTools.groovy -------------------------------------------------------------------------------- /vars/setupTools.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/setupTools.md -------------------------------------------------------------------------------- /vars/sshAgentWrapper.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/sshAgentWrapper.groovy -------------------------------------------------------------------------------- /vars/sshAgentWrapper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/sshAgentWrapper.md -------------------------------------------------------------------------------- /vars/transferScp.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/transferScp.groovy -------------------------------------------------------------------------------- /vars/transferScp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/transferScp.md -------------------------------------------------------------------------------- /vars/wrappers.groovy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/wrappers.groovy -------------------------------------------------------------------------------- /vars/wrappers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wcm-io-devops/jenkins-pipeline-library/HEAD/vars/wrappers.md --------------------------------------------------------------------------------