copyArtifacts fix

This commit is contained in:
MatOgr 2022-04-04 00:11:09 +02:00
parent 502cc45539
commit 9828c4c8c5

View File

@ -1,13 +1,12 @@
node {
stage('Copying artifacts') {
copyArtifacts fingerprintArtifacts: true, projectName: 's478841-create-dataset', selector: lastSuccessful()
}
docker.image('s478841-image:latest').inside('--name stats_giver') {
stage('Copying artifacts') {
copyArtifacts fingerprintArtifacts: true, projectName: 's478841-create-dataset', selectro: lastSuccessful()
}
stage('Data stats in container') {
sh 'ls'
sh 'ls -al'
sh 'pwd'
sh './data_stats.sh'
sh './scripts/data_stats.sh'
}
}
}