try another approach on downloading

This commit is contained in:
Karol Cyganik 2024-04-03 09:04:23 +02:00
parent e027de6e16
commit a9144adc4a

View File

@ -30,9 +30,16 @@ pipeline {
git branch: 'main', url: 'https://git.wmi.amu.edu.pl/s495715/iumKC.git'
}
}
stage('Stats in docker') {
stage('Copy Artifacts') {
steps {
sh "sudo python3 main.py"
script {
copyArtifacts fingerprintArtifacts: true, projectName: 'z-s495715-create-dataset', selector: buildParameter('BUILD_SELECTOR')
}
}
}
stage('Execute Script') {
steps {
sh 'python 3 main.py'
}
}
}