mirror of
https://github.com/SAP/jenkins-library.git
synced 2025-03-03 15:02:35 +02:00
* new step integrationArtifactTriggerIntegrationTest * add new step into allow list * add the new step to main command * refer cpe * remove unused unit tests * Check methods and URLs of http request * Add TriggerIntegration to mockingutils * Format code Co-authored-by: Oliver Feldmann <oliver.feldmann@sap.com> Co-authored-by: Linda Siebert <linda.siebert@sap.com>
12 lines
387 B
Groovy
12 lines
387 B
Groovy
import groovy.transform.Field
|
|
|
|
@Field String STEP_NAME = getClass().getName()
|
|
@Field String METADATA_FILE = 'metadata/integrationArtifactTriggerIntegrationTest.yaml'
|
|
|
|
void call(Map parameters = [:]) {
|
|
List credentials = [
|
|
[type: 'token', id: 'iFlowCredentialsId', env: ['PIPER_iFlowServiceKey']]
|
|
]
|
|
piperExecuteBin(parameters, STEP_NAME, METADATA_FILE, credentials)
|
|
}
|