simple jenkinsfile for testing (#1311)
* simple jenkinsfile for testing * add build steps to jenkinsfile * remove extra build steps
This commit is contained in:
parent
2e951cbfca
commit
471e7680e7
1 changed files with 14 additions and 0 deletions
14
Jenkinsfile
vendored
Normal file
14
Jenkinsfile
vendored
Normal 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'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue