This commit is contained in:
piotrwrzodak 2023-04-20 22:49:02 +02:00
parent dfc536cea6
commit b5ff92b822

10
Jenkinsfile vendored
View File

@ -13,16 +13,16 @@ pipeline {
name: 'KAGGLE_KEY' name: 'KAGGLE_KEY'
) )
string( string(
defaultValue: '1000', defaultValue: '100',
description: 'CUTOFF', description: 'CUTOFF',
name: 'CUTOFF', name: 'CUTOFF',
trim: false trim: false
) )
} }
stages { stages {
stage('Clear') { stage('checkout: Check out from version control') {
steps { steps {
sh 'rm -rf *' checkout scm
} }
} }
stage('Build') { stage('Build') {
@ -34,8 +34,8 @@ pipeline {
sh 'rm airbnb-prices-in-european-cities.zip' sh 'rm airbnb-prices-in-european-cities.zip'
sh 'ls -a' sh 'ls -a'
sh 'ls -a ./ium_z444510' sh 'ls -a ./ium_z444510'
sh 'chmod u+x ./ium_z444510/create-dataset.sh' sh 'chmod u+x create-dataset.sh'
sh './ium_z444510/create-dataset.sh' sh './create-dataset.sh'
} }
// archiveArtifacts 'ium_z444510/train.csv' // archiveArtifacts 'ium_z444510/train.csv'
// archiveArtifacts 'ium_z444510/dev.csv' // archiveArtifacts 'ium_z444510/dev.csv'