2022-03-24 16:08:04 +01:00
|
|
|
pipeline {
|
2022-04-25 21:43:10 +02:00
|
|
|
agent {
|
2022-05-03 18:09:46 +02:00
|
|
|
docker { image 'mikolajk/ium:latest' }
|
2022-04-25 21:43:10 +02:00
|
|
|
}
|
2022-03-24 19:07:58 +01:00
|
|
|
parameters{
|
|
|
|
string(
|
|
|
|
defaultValue: 'mikolaj2',
|
|
|
|
description: 'Kaggle username',
|
|
|
|
name: 'KAGGLE_USERNAME'
|
2022-03-24 22:38:56 +01:00
|
|
|
)
|
2022-03-24 19:07:58 +01:00
|
|
|
string(
|
2022-03-24 19:21:26 +01:00
|
|
|
defaultValue: '20',
|
2022-03-24 19:07:58 +01:00
|
|
|
description: 'Value for head command',
|
|
|
|
name: 'CUTOFF'
|
2022-03-24 22:38:56 +01:00
|
|
|
)
|
2022-03-24 22:47:15 +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'
|
|
|
|
)
|
2022-03-24 19:05:28 +01:00
|
|
|
}
|
2022-04-25 21:17:39 +02:00
|
|
|
options {
|
|
|
|
copyArtifactPermission('s444417-training');
|
|
|
|
}
|
2022-04-25 19:53:02 +02:00
|
|
|
stages {
|
2022-03-24 16:08:04 +01:00
|
|
|
stage("Check out from version control") {
|
2022-03-24 18:29:20 +01:00
|
|
|
steps {
|
|
|
|
checkout scm
|
|
|
|
}
|
2022-03-24 16:08:04 +01:00
|
|
|
}
|
2022-03-24 20:34:37 +01:00
|
|
|
stage("Shell Scripts") {
|
2022-03-24 18:29:20 +01:00
|
|
|
steps {
|
2022-04-06 18:55:31 +02:00
|
|
|
// sh "KAGGLE_USERNAME=${params.KAGGLE_USERNAME} KAGGLE_KEY=${params.KAGGLE_KEY} CUTOFF=${CUTOFF} ./startscript1.sh"
|
2022-05-03 18:09:46 +02:00
|
|
|
// sh 'ls -la'
|
2022-05-04 16:17:27 +02:00
|
|
|
sh 'unzip -o house-price-dataset.zip'
|
2022-05-04 16:15:32 +02:00
|
|
|
sh 'python3 ./src/task1python.py'
|
2022-04-25 21:21:40 +02:00
|
|
|
archiveArtifacts 'Participants_Data_HPP/**/*.*'
|
2022-03-24 18:29:20 +01:00
|
|
|
}
|
2022-03-24 17:40:59 +01:00
|
|
|
}
|
2022-04-25 19:16:01 +02:00
|
|
|
stage ('Starting train job') {
|
2022-04-25 19:20:22 +02:00
|
|
|
steps {
|
2022-04-25 21:29:39 +02:00
|
|
|
build job: 's444417-training/master', wait: false
|
2022-04-25 19:20:22 +02:00
|
|
|
}
|
2022-04-25 19:16:01 +02:00
|
|
|
}
|
2022-03-23 11:11:31 +01:00
|
|
|
}
|
2022-03-23 11:09:04 +01:00
|
|
|
}
|