ium_z444510/Jenkinsfile-create-dataset-docker

51 lines
1.4 KiB
Plaintext
Raw Normal View History

2023-05-11 22:05:21 +02:00
pipeline {
2023-05-11 22:46:04 +02:00
agent any
2023-05-11 22:05:21 +02:00
parameters{
string(
defaultValue: 'piotrwrzodak',
description: 'Kaggle username',
name: 'KAGGLE_USERNAME',
trim: false
)
password(
defaultValue: '',
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
name: 'KAGGLE_KEY'
)
string(
defaultValue: '100',
description: 'CUTOFF',
name: 'CUTOFF',
trim: false
)
}
stages {
2023-05-11 22:15:57 +02:00
stage('clear') {
steps {
sh 'rm -rf *'
}
}
2023-05-11 22:05:21 +02:00
stage('checkout: Check out from version control') {
steps {
checkout scm
}
}
stage('Build') {
steps {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}", "KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
sh 'kaggle datasets download -d thedevastator/airbnb-prices-in-european-cities'
sh 'unzip airbnb-prices-in-european-cities.zip -d data'
2023-05-11 22:17:45 +02:00
sh 'ls'
2023-05-11 22:05:21 +02:00
}
}
}
2023-05-11 22:46:04 +02:00
stage('Docker') {
agent {
dockerfile true
}
steps {
2023-05-11 22:58:08 +02:00
archiveArtifacts artifacts: 'barcelona_weekends.train.csv, barcelona_weekends.dev.csv, barcelona_weekends.test.csv', fingerprint: true
2023-05-11 22:46:04 +02:00
}
}
2023-05-11 22:05:21 +02:00
}
}