mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
2bd49fbe19
* first version to download script from git * unit test adjust * adding git token * info messages * removing extra info message * changing file permission for scrtips * modying sources to handle https download * adding script downloads * commenting the file permission change * changing persmission * adding header to download file * adding perimssions * adding perimssions * not touching file permissions * adding to pipeline * return file name * changing script name * adding file permission changes * adding file permission changes * using current directory * file permission * downloading in .pipeline folder * removing permission handeling * improving the step docu * improving the step docu * unit test and code cleaning * fix typo * adding read execute permission * fix unit test * fix unit test * removing negative test Co-authored-by: anilkeshav27 <you@example.com> Co-authored-by: Oliver Nocon <33484802+OliverNocon@users.noreply.github.com>
10 lines
347 B
Groovy
10 lines
347 B
Groovy
import groovy.transform.Field
|
|
|
|
@Field String STEP_NAME = getClass().getName()
|
|
@Field String METADATA_FILE = 'metadata/shellExecute.yaml'
|
|
|
|
void call(Map parameters = [:]) {
|
|
List credentials = [[type: 'token', id: 'githubTokenCredentialsId', env: ['PIPER_githubToken']]]
|
|
piperExecuteBin(parameters, STEP_NAME, METADATA_FILE, credentials)
|
|
}
|