commit | e9f90954427b9c733367f4a9213c46b9c072cf7c | [log] [tgz] |
---|---|---|
author | Carlos Sanchez <carlos@apache.org> | Tue Mar 15 19:16:56 2016 +0100 |
committer | Carlos Sanchez <carlos@apache.org> | Tue Mar 15 20:24:18 2016 +0100 |
tree | 07ad30043229501f5eb0502e89f347c12f9932d6 | |
parent | e7d56fa71d44ace1f1d8258ef216bba64f266cca [diff] [blame] |
Initial Jenkinsfile
diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..f1f5202 --- /dev/null +++ b/Jenkinsfile
@@ -0,0 +1,11 @@ +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" +}