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