node { stage('Preparation') { properties([ parameters([ string( defaultValue: 'Hello World!', description: 'Tekst do wyƛwietlenie', name: 'INPUT_TEXT', trim: false ), string( defaultValue: "10000", description: "How many records use", name: "CUTOFF" ) ]) ]) } stage('Download') { sh "dataset_script.sh \"${CUTOFF}\"" } stage('Goodbye') { echo 'Goodbye!' //Zarchiwizuj wynik archiveArtifacts 'heart_2020_test.csv, heart_2020_train.csv, heart_2020_sorted.csv' } }