forked from Ivasoft/mattermost-mobile
* simple jenkinsfile for testing * add build steps to jenkinsfile * remove extra build steps
14 lines
290 B
Groovy
14 lines
290 B
Groovy
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'
|
|
}
|
|
}
|
|
}
|
|
} |