simple jenkinsfile for testing (#1311)

* simple jenkinsfile for testing

* add build steps to jenkinsfile

* remove extra build steps
This commit is contained in:
Derrick Anderson 2017-12-26 15:41:41 -05:00 committed by GitHub
parent 2e951cbfca
commit 471e7680e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

14
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,14 @@
pipeline {
agent any
stages {
stage('Test') {
steps {
echo 'assets/base/config.json'
sh 'cat assets/base/config.json'
sh 'touch .podinstall'
sh 'make test || exit 1'
}
}
}
}