ium_495719/Jenkinsfile

49 lines
1.3 KiB
Plaintext
Raw Normal View History

2024-03-20 14:29:43 +01:00
pipeline {
2024-04-02 21:47:31 +02:00
agent {
dockerfile true
}
2024-03-20 15:12:02 +01:00
2024-03-27 01:55:00 +01:00
parameters {
string(
defaultValue: '',
description: 'Kaggle username',
name: 'KAGGLE_USERNAME',
trim: false
2024-03-27 01:57:46 +01:00
)
2024-03-27 01:55:00 +01:00
password(
defaultValue: '',
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
name: 'KAGGLE_KEY'
)
2024-03-27 02:06:32 +01:00
string(
defaultValue: '50',
description: 'number of truncated examples',
name: 'CUTOFF'
)
2024-03-27 01:55:00 +01:00
}
2024-03-20 14:29:43 +01:00
stages {
2024-03-27 01:48:16 +01:00
stage('Git') {
2024-03-20 14:29:43 +01:00
steps {
2024-03-27 01:33:18 +01:00
git(
url: "https://git.wmi.amu.edu.pl/s495719/ium_495719.git",
branch: "main"
)
2024-03-27 01:48:16 +01:00
}
}
2024-04-02 21:44:37 +02:00
stage('build') {
2024-03-27 01:48:16 +01:00
steps {
2024-03-27 02:47:12 +01:00
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
2024-04-02 21:39:11 +02:00
sh 'chmod 777 ./data_processing.py'
2024-04-02 22:00:38 +02:00
sh "python3 ./data_processing.py ${params.CUTOFF}"
2024-03-27 02:47:12 +01:00
}
2024-03-27 01:48:16 +01:00
}
}
stage('Artifacts') {
steps {
2024-04-02 21:32:37 +02:00
archiveArtifacts artifacts: 'hp_train.csv,hp_dev.csv,hp_test.csv'
2024-03-20 14:29:43 +01:00
}
}
}
}