ium_444465/Jenkinsfile
2022-03-27 13:28:05 +02:00

27 lines
762 B
Groovy

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'
}
}