diff --git a/Jenkinsfile_create_dataset b/Jenkinsfile_create_dataset index eaec287..f190c4a 100644 --- a/Jenkinsfile_create_dataset +++ b/Jenkinsfile_create_dataset @@ -1,5 +1,7 @@ pipeline { - agent any + agent dockerfile { + filename 'create.dockerfile' + } //Definijuemy parametry, które będzie można podać podczas wywoływania zadania parameters{ @@ -48,28 +50,13 @@ pipeline { } } } - stage('Docker') { - agent { - dockerfile { - filename 'create.dockerfile' - args '-v $HOME:/script' - } - } - steps { - echo 'building docker' - archiveArtifacts 'file.txt' - } - } - - - stage('Goodbye!') { steps { echo 'Goodbye!' //Zarchiwizuj wynik //archiveArtifacts 'output.txt' archiveArtifacts 'dataset.csv' - + archiveArtifacts 'file.txt' } }