blob: f1f52025044a4f60631607bd07c9ea6ae1b62acc [file] [log] [blame]
node('docker') {
stage 'Checkout'
checkout scm
stage 'Build'
docker.build('jenkins')
stage 'Test'
sh "git checkout https://github.com/sstephenson/bats.git"
sh "bats/bin/bats tests/tests.bats"
}