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 { stage('Show stats') {
image 's478841-create-dataset' docker.image('s478841-create-dataset').inside('-u root') {
} sh 'ls -al'
} sh 'chmod +x /app/data_stats.sh && /app/data_stats.sh'
stages {
stage ('Show stats') {
steps {
sh 'ls -al'
sh 'chmod +x /app/data_stats.sh && /app/data_stats.sh'
}
} }
} }
} }