44 lines
1.5 KiB
Plaintext
44 lines
1.5 KiB
Plaintext
node {
|
|
checkout scm
|
|
def testImage = docker.build("test-image")
|
|
testImage.inside {
|
|
stage('Preparation') {
|
|
properties([
|
|
parameters([
|
|
string(
|
|
defaultValue: 'michal2608',
|
|
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: '117926',
|
|
description: 'Number of positions to be saved',
|
|
name: 'CUTOFF',
|
|
trim: false)
|
|
])
|
|
])
|
|
}
|
|
stage('Download data') {
|
|
checkout scmGit(branches: [[name: '*/master']], extensions: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s452662/ium_452662']])
|
|
}
|
|
stage('Cut data') {
|
|
withEnv(["CUTOFF=${params.CUTOFF}"]) {
|
|
sh '''
|
|
cd zbior_ium
|
|
wc -l Car_Prices_Poland_Kaggle.csv
|
|
head -n 11793 Car_Prices_Poland_Kaggle.csv > cars_test.csv
|
|
head -n 23586 Car_Prices_Poland_Kaggle.csv | tail -11793 > cars_dev.csv
|
|
head -n $((CUTOFF)) Car_Prices_Poland_Kaggle.csv | tail $((23586 - CUTOFF)) > cars_train.csv'''}
|
|
}
|
|
stage('Save data into artifacts') {
|
|
archiveArtifacts artifacts: 'zbior_ium/*.csv', followSymlinks: false
|
|
}
|
|
}
|
|
|
|
} |