mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
c38d231820
* gaugeExecuteTests converted to golang * rewrited gaugeExecuteTests to cross-platform implementation. Now gauge uses npm * regenerated * groovy file import fix Co-authored-by: Oliver Nocon <33484802+OliverNocon@users.noreply.github.com>
14 lines
513 B
Groovy
14 lines
513 B
Groovy
import static com.sap.piper.Prerequisites.checkScript
|
|
import groovy.transform.Field
|
|
|
|
@Field String STEP_NAME = getClass().getName()
|
|
@Field String METADATA_FILE = 'metadata/gauge.yaml'
|
|
|
|
void call(Map parameters = [:]) {
|
|
List credentials = [
|
|
[type: 'usernamePassword', id: 'seleniumHubCredentialsId', env: ['PIPER_SELENIUM_HUB_USER', 'PIPER_SELENIUM_HUB_PASSWORD']],
|
|
]
|
|
final script = checkScript(this, parameters) ?: this
|
|
piperExecuteBin(parameters, STEP_NAME, METADATA_FILE, credentials)
|
|
}
|