43 lines
1.2 KiB
Plaintext
43 lines
1.2 KiB
Plaintext
pipeline {
|
|
agent any
|
|
//Definijuemy parametry, które będzie można podać podczas wywoływania zadania
|
|
parameters {
|
|
string(
|
|
defaultValue: '1000',
|
|
description: 'Amount of values to be used from dataset',
|
|
name: 'CUTOFF',
|
|
trim: false
|
|
)
|
|
string(
|
|
defaultValue: 'wleczny',
|
|
description: 'Kaggle username',
|
|
name: 'KAGGLE_USERNAME',
|
|
trim: false
|
|
)
|
|
password(
|
|
defaultValue: '2e89e20ceb0a48d9df01a01bad744776',
|
|
description: 'Kaggle token',
|
|
name: 'KAGGLE_KEY'
|
|
)
|
|
}
|
|
stages {
|
|
stage('Prepare data') {
|
|
steps {
|
|
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}"]) {
|
|
sh './get-data.sh'
|
|
sh 'python3 prepare_dataset.py'
|
|
}
|
|
}
|
|
}
|
|
stage('Archive artifacts') {
|
|
steps {
|
|
archiveArtifacts 'X_test.csv'
|
|
archiveArtifacts 'X_val.csv'
|
|
archiveArtifacts 'X_train.csv'
|
|
archiveArtifacts 'Y_test.csv'
|
|
archiveArtifacts 'Y_val.csv'
|
|
archiveArtifacts 'Y_train.csv'
|
|
}
|
|
}
|
|
}
|
|
} |