diff --git a/Multibranch-Training b/Multibranch-Training index 5ccee5c..c376f6e 100644 --- a/Multibranch-Training +++ b/Multibranch-Training @@ -1,22 +1,19 @@ pipeline { agent any - - //Definijuemy parametry, które będzie można podać podczas wywoływania zadania - parameters{ - string( - defaultValue: 'master', - description: 'BRANCH', - name: 'BRANCH', - trim: false - ) - } + parameters{ + string( + defaultValue: 'master', + description: 'BRANCH', + name: 'BRANCH', + trim: false + ) + } stages { stage('clear_before') { steps { sh 'rm -rf *' } } - stage('copy_artifacts') { steps { copyArtifacts filter: 'X_test.csv,X_dev.csv,X_train.csv', fingerprintArtifacts: true, projectName: 'z-s434686-create-dataset', selector: workspace()