diff --git a/parameters/Jenkinsfile.staticParametes b/parameters/Jenkinsfile.staticParametes deleted file mode 100644 index 933204a..0000000 --- a/parameters/Jenkinsfile.staticParametes +++ /dev/null @@ -1,36 +0,0 @@ -pipeline { - agent any - stages { - stage('Setup parameters') { - steps { - script { - properties([ - parameters([ - choice( - choices: ['ONE', 'TWO'], - name: 'PARAMETER_01' - ), - booleanParam( - defaultValue: true, - description: '', - name: 'BOOLEAN' - ), - text( - defaultValue: ''' - this is a multi-line - string parameter example - ''', - name: 'MULTI-LINE-STRING' - ), - string( - defaultValue: 'scriptcrunch', - name: 'STRING-PARAMETER', - trim: true - ) - ]) - ]) - } - } - } - } -}