Copying artifacts

This commit is contained in:
MatOgr 2022-04-04 00:04:39 +02:00
parent b306292524
commit 622f62e2e4

View File

@ -1,8 +1,11 @@
node {
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 -al'
sh 'chmod +x stats_giver:/app/data_stats.sh && stats_giver:/app/data_stats.sh'
sh './data_stats.sh'
}
}
}