2020-05-18 21:39:35 +02:00
# ${docGenStepName}
## ${docGenDescription}
## Prerequisites
2021-08-20 12:54:55 +02:00
If you provide a `commit ID` , the step deploys the content of the specified commit to the ABAP system. If you provide a `branch` , the step deploys the content of the specified branch. If you set the `rollback` parameter to *true* , the step returns to a working state of the repository, if the deployment of the specified commit or branch fails.
2023-03-29 12:31:27 +02:00
More information about the [Git-enabled Change and Transport System (gCTS) ](https://help.sap.com/docs/ABAP_PLATFORM_NEW/4a368c163b08418890a406d413933ba7/f319b168e87e42149e25e13c08d002b9.html ).
2020-05-18 21:39:35 +02:00
## ${docGenParameters}
## ${docGenConfiguration}
## ${docJenkinsPluginDependencies}
## Example
Example configuration for the use in a `Jenkinsfile` .
```groovy
gctsDeploy(
script: this,
2020-07-22 10:56:20 +02:00
host: 'https://abap.server.com:port',
client: '000',
2020-05-18 21:39:35 +02:00
abapCredentialsId: 'ABAPUserPasswordCredentialsId',
2021-05-10 13:05:21 +01:00
repository: 'myrepo',
remoteRepositoryURL: "https://remote.repository.url.com",
role: 'SOURCE',
vSID: 'ABC',
2021-08-20 12:54:55 +02:00
branch: 'feature1',
commit: '95952ec',
scope: 'LASTACTION',
rollback: true,
2023-03-29 12:31:27 +02:00
configuration: [VCS_AUTOMATIC_PULL: 'FALSE',VCS_AUTOMATIC_PUSH: 'FALSE',CLIENT_VCS_LOGLVL: 'debug'],
queryparameters: [saml2: 'disabled']
2020-05-18 21:39:35 +02:00
)
```
Example for the use in a YAML configuration file (such as `.pipeline/config.yaml` ).
```yaml
steps:
< ... >
gctsDeploy:
2020-07-22 10:56:20 +02:00
host: 'https://abap.server.com:port'
client: '000'
abapCredentialsId: 'ABAPUserPasswordCredentialsId'
repository: 'myrepo'
2021-05-10 13:05:21 +01:00
remoteRepositoryURL: "https://remote.repository.url.com"
role: 'SOURCE'
vSID: 'ABC'
2021-08-20 12:54:55 +02:00
branch: 'feature2'
commit: '0c9d330'
scope: 'CRNTCOMMIT'
2021-05-10 13:05:21 +01:00
rollback: false
configuration:
2021-08-20 12:54:55 +02:00
VCS_AUTOMATIC_PULL: "FALSE"
VCS_AUTOMATIC_PUSH: "FALSE"
CLIENT_VCS_LOGLVL: "debug"
2023-03-29 12:31:27 +02:00
queryparameters:
saml2: "disabled"
2020-05-18 21:39:35 +02:00
```