4.3.1 v12

This commit is contained in:
piotrwrzodak 2023-05-11 23:12:16 +02:00
parent 72f6536eed
commit 4061ae0c96

View File

@ -1,7 +1,5 @@
pipeline {
agent {
dockerfile true
}
agent any
parameters{
string(
defaultValue: 'piotrwrzodak',
@ -38,10 +36,16 @@ pipeline {
sh 'kaggle datasets download -d thedevastator/airbnb-prices-in-european-cities'
sh 'unzip airbnb-prices-in-european-cities.zip'
sh 'ls'
sh 'python3 create-dataset.py'
archiveArtifacts artifacts: 'data/barcelona_weekends.train.csv, data/barcelona_weekends.dev.csv, data/barcelona_weekends.test.csv', fingerprint: true
}
}
}
stage('Docker') {
agent {
dockerfile true
}
steps {
sh 'ls'
}
}
}
}