Add jenkinsfile

This commit is contained in:
Krzysztof Jurkiewicz 2019-11-18 17:53:37 +01:00
parent 3486c31d72
commit ba9b166cb2
1 changed files with 13 additions and 0 deletions

13
jenkinsfile Normal file
View File

@ -0,0 +1,13 @@
pipeline {
agent { docker { image 'cangol/android-gradle:latest' } }
stages {
stage('build') {
steps {
sh 'gradle --version'
}
}
stage('test') {
sh 'echo Hello World'
}
}
}