2019-02-18 08:20:16 +01:00
# ${docGenStepName}
2018-06-26 16:02:27 +02:00
2019-02-18 08:20:16 +01:00
## ${docGenDescription}
2018-11-09 16:10:01 +01:00
2021-10-18 15:16:22 +02:00
## Migration Guide
2018-11-06 13:50:09 +01:00
2021-10-18 15:16:22 +02:00
**Note:** This step has been deprecated. Use the new step [isChangeInDevelopment ](isChangeInDevelopment.md ) instead.
Adjust your parameters to the naming convention of the new step.
Adjust the unsupported parameters as indicated in the table below:
| Unsupported Parameter | New Parameter |
| ------------- | ------------- |
| changeManagement/type | This parameter has been removed. `SOLMAN` is the only backend type supported. |
| changeManagement/`<type>` /docker/envVars | `dockerEnvVars` |
| changeManagement/`<type>` /docker/image | `dockerImage` |
| changeManagement/`<type>` /docker/options | `dockerOptions` |
| changeManagement/`<type>` /docker/pullImage | `dockerPullImage` |
| changeManagement/git/format | This parameter has been removed. Make sure that the IDS of your change document and transport request are part of the Git commit message body. |
Your config.yml file should look as follows:
```yaml
general:
# new naming convention
steps:
isChangeInDevelopment:
2022-04-05 12:33:19 +02:00
dockerImage: 'ppiper/cm-client:3.0.0.0'
2021-10-18 15:16:22 +02:00
```
**Note:** The new step does not comprise the retrieval of the change document ID from the Git repository anymore. Use the step [transportRequestDocIDFromGit ](transportRequestDocIDFromGit.md ) instead.
2018-06-26 16:02:27 +02:00
2019-02-18 08:20:16 +01:00
## ${docGenParameters}
2018-11-06 13:50:09 +01:00
2019-02-18 08:20:16 +01:00
## ${docGenConfiguration}
2018-12-17 11:52:12 +01:00
2019-05-24 15:44:31 +02:00
## ${docJenkinsPluginDependencies}
2019-05-24 15:41:49 +02:00
2018-12-17 11:52:12 +01:00
## Exceptions
* `AbortException` :
* If the change id is not provided via parameter and if the change document id cannot be retrieved from the commit history.
* If the change is not in status `in development` . In this case no exception will be thrown when `failIfStatusIsNotInDevelopment` is set to `false` .
* `IllegalArgumentException` :
* If a mandatory property is not provided.
## Examples
2018-07-17 09:21:56 +02:00
The step is configured using a customer configuration file provided as
resource in an custom shared library.
2018-06-26 16:02:27 +02:00
2018-11-06 13:50:09 +01:00
```groovy
2018-12-05 13:37:15 +01:00
@Library ('piper-lib-os@master ') _
2018-07-17 09:21:56 +02:00
// the shared lib containing the additional configuration
// needs to be configured in Jenkins
2018-11-06 13:50:09 +01:00
@Library ('foo@master ') __
2018-07-17 09:21:56 +02:00
// inside the shared lib denoted by 'foo' the additional configuration file
// needs to be located under 'resources' ('resoures/myConfig.yml')
2019-05-17 13:20:13 +02:00
prepareDefaultValues script: this, customDefaults: 'myConfig.yml'
2018-07-17 09:21:56 +02:00
```
2018-11-06 13:50:09 +01:00
Example content of `'resources/myConfig.yml'` in branch `'master'` of the repository denoted by
`'foo'` :
2018-07-17 09:21:56 +02:00
2018-11-06 13:50:09 +01:00
```yaml
2018-07-17 09:21:56 +02:00
general:
changeManagement:
changeDocumentLabel: 'ChangeDocument\s?:'
cmClientOpts: '-Djavax.net.ssl.trustStore=< path to truststore > '
credentialsId: 'CM'
endpoint: 'https://example.org/cm'
git:
from: 'HEAD~1'
to: 'HEAD'
format: '%b'
```
2020-09-24 07:41:06 +02:00
The properties configured in section `'general/changeManagement'` are shared between all change management related steps.
2018-07-17 09:21:56 +02:00
The properties can also be configured on a per-step basis:
2018-11-06 13:50:09 +01:00
```yaml
2018-07-17 09:21:56 +02:00
[...]
steps:
checkChangeInDevelopment:
changeManagement:
endpoint: 'https://example.org/cm'
[...]
failIfStatusIsNotInDevelopment: true
```
2018-12-17 11:52:12 +01:00
The parameters can also be provided when the step is invoked:
2018-11-06 13:50:09 +01:00
2018-07-17 09:21:56 +02:00
```groovy
// simple case. All mandatory parameters provided via
// configuration, changeDocumentId provided via commit
// history
checkChangeInDevelopment script:this
```
2018-06-26 16:02:27 +02:00
```groovy
2020-09-24 07:41:06 +02:00
// explicit endpoint provided, we search for changeDocumentId
2018-07-17 09:21:56 +02:00
// starting at the previous commit (HEAD~1) rather than on
// 'origin/master' (the default).
2019-05-17 13:20:13 +02:00
checkChangeInDevelopment(
script: this
changeManagement: [
endpoint: 'https:example.org/cm'
git: [
from: 'HEAD~1'
]
]
)
2018-06-26 16:02:27 +02:00
```