Jnkns stats test

This commit is contained in:
MatOgr 2022-04-03 23:47:08 +02:00
parent edae70473f
commit d8f4d42d29

View File

@ -1,15 +1,9 @@
pipeline { node {
agent { checkout scm
docker {
image 's478841-create-dataset'
}
}
stages {
stage('Show stats') { stage('Show stats') {
steps { docker.image('s478841-create-dataset').inside('-u root') {
sh 'ls -al' sh 'ls -al'
sh 'chmod +x /app/data_stats.sh && /app/data_stats.sh' sh 'chmod +x /app/data_stats.sh && /app/data_stats.sh'
} }
} }
} }
}