Zaktualizuj 'Jenkinsfile-create-dataset'

This commit is contained in:
Patryk Łukasiewicz 2023-05-12 18:28:15 +02:00
parent 5862f2dd31
commit 3883afcb6e

View File

@ -10,7 +10,7 @@ pipeline {
trim: false trim: false
) )
password( password(
defaultValue: '', defaultValue: 'a7a48b574c0f2bf5a10da7be4e70d053',
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials', description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
name: 'KAGGLE_KEY' name: 'KAGGLE_KEY'
) )
@ -57,6 +57,9 @@ pipeline {
archiveArtifacts 'X_test.csv' archiveArtifacts 'X_test.csv'
archiveArtifacts 'X_dev.csv' archiveArtifacts 'X_dev.csv'
archiveArtifacts 'X_train.csv' archiveArtifacts 'X_train.csv'
archiveArtifacts 'Y_test.csv'
archiveArtifacts 'Y_dev.csv'
archiveArtifacts 'Y_train.csv'
} }
} }
stage('clear2') { stage('clear2') {
@ -65,4 +68,9 @@ pipeline {
} }
} }
} }
post {
always {
build 'z-s434743-training/master'
}
}
} }