feature/kjug

smoke test
This commit is contained in:
kudlaty 2018-03-22 19:00:47 +01:00
parent e45b50d2e3
commit 25a54e37ea

9
Jenkinsfile vendored
View file

@ -82,5 +82,14 @@ pipeline{
sh 'scp -r -o StrictHostKeyChecking=no dist/webapp root@172.17.0.3:/var/'
}
}
stage('Smoke Test') {
when {
branch 'kjug'
}
agent { label 'master' }
steps {
sh 'ssh -o StrictHostKeyChecking=no root@172.17.0.3 ls -la /var/webapp'
}
}
}
}