1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2025-11-29 22:58:09 +02:00

feat!: Mass enable abapEnvironmentPullGitRepo (#1516)

* Enable multiple repositories

* Improve readability

* Adapt documentation

* rerun generator

* Add initial info line

* Improve logging
This commit is contained in:
Daniel Mieg
2020-05-07 15:51:11 +02:00
committed by GitHub
parent fd858dafcd
commit 02ede6d28b
5 changed files with 66 additions and 54 deletions

View File

@@ -20,7 +20,7 @@ In the first example, the host and the credentialsId of the Communication Arrang
```groovy
abapEnvironmentPullGitRepo (
script: this,
repositoryName: '/DMO/GIT_REPOSITORY',
repositoryNames: ['/DMO/GIT_REPOSITORY'],
credentialsId: 'abapCredentialsId',
host: '1234-abcd-5678-efgh-ijk.abap.eu10.hana.ondemand.com'
)
@@ -31,14 +31,12 @@ In the second example, the host and credentialsId will be read from the provided
```groovy
abapEnvironmentPullGitRepo (
script: this,
repositoryName: '/DMO/GIT_REPOSITORY',
repositoryNames: ['/DMO/GIT_REPOSITORY', '/DMO/GIT_REPO'],
credentialsId: 'cfCredentialsId',
cloudFoundry: [
apiEndpoint: 'https://test.server.com',
org: 'cfOrg',
space: 'cfSpace',
serviceInstance: 'cfServiceInstance',
serviceKey: 'cfServiceKey',
]
cfApiEndpoint: 'https://test.server.com',
cfOrg: 'cfOrg',
cfSpace: 'cfSpace',
cfServiceInstance: 'cfServiceInstance',
cfServiceKey: 'cfServiceKey'
)
```