- add smoketests to the gitea Jenkinsfile

This commit is contained in:
2018-10-26 22:52:13 -04:00
parent 3a70a80ea9
commit a6e47030ce

View File

@@ -17,4 +17,11 @@ node('docker') {
sh "DOCKER_HOST=dkhost:2376 docker stack deploy -c docker-compose.yml gitea"
}
}
stage('smoke tests') {
dir(workdir) {
sleep 60
sh "curl -If http://dkhost:1008"
}
}
}