This commit is contained in:
s495716 2024-03-29 15:47:31 +01:00
parent 144ee6c2d6
commit 2dda6f35f5
2 changed files with 2 additions and 4 deletions

4
Jenkinsfile vendored
View File

@ -27,9 +27,7 @@ pipeline {
withEnv(["KAGGLE_USERNAME=${KAGGLE_USERNAME}", withEnv(["KAGGLE_USERNAME=${KAGGLE_USERNAME}",
"KAGGLE_KEY=${KAGGLE_KEY}" ]) { "KAGGLE_KEY=${KAGGLE_KEY}" ]) {
sh 'jupyter execute Data_download.ipynb' sh 'jupyter execute Data_download.ipynb'
sh 'chmod 777 ./data_download.sh' archiveArtifacts artifacts: 'test.csv,train.csv', followSymlinks: false
sh './data_download.sh --cutoff ${CUTOFF}'
archiveArtifacts artifacts: 'test_without_id_column.csv,cutoff_train.csv,test.csv,train.csv', followSymlinks: false
} }
} }
} }

2
stats/Jenkinsfile vendored
View File

@ -14,7 +14,7 @@ pipeline {
stages { stages {
stage('Dataset statistics') { stage('Dataset statistics') {
steps { steps {
copyArtifacts filter:'cutoff_train.csv', fingerprintArtifacts: true, projectName: 'z-s495716-create-dataset', selector: buildParameter('BUILD_SELECTOR') copyArtifacts filter:'train.csv', fingerprintArtifacts: true, projectName: 'z-s495716-create-dataset', selector: buildParameter('BUILD_SELECTOR')
sh 'chmod 777 stats/data_stats.sh' sh 'chmod 777 stats/data_stats.sh'
sh './stats/data_stats.sh' sh './stats/data_stats.sh'
archiveArtifacts artifacts: 'train_lines.txt', followSymlinks: false archiveArtifacts artifacts: 'train_lines.txt', followSymlinks: false