ium_444465/Jenkinsfile

27 lines
762 B
Plaintext
Raw Normal View History

2022-03-21 11:05:30 +01:00
node {
stage('Preparation') {
properties([
parameters([
string(
defaultValue: 'Hello World!',
description: 'Tekst do wyświetlenie',
name: 'INPUT_TEXT',
trim: false
2022-03-27 13:28:05 +02:00
),
string(
defaultValue: "10000",
description: "How many records use",
name: "CUTOFF"
2022-03-21 11:05:30 +01:00
)
])
])
}
2022-03-27 13:28:05 +02:00
stage('Download') {
sh "dataset_script.sh \"${CUTOFF}\""
2022-03-21 11:05:30 +01:00
}
stage('Goodbye') {
echo 'Goodbye!'
//Zarchiwizuj wynik
2022-03-27 13:28:05 +02:00
archiveArtifacts 'heart_2020_test.csv, heart_2020_train.csv, heart_2020_sorted.csv'
2022-03-21 11:05:30 +01:00
}
}