Skip to content

Commit

Permalink
Add Jenkinsfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
rsur committed Feb 5, 2020
1 parent c63d16f commit 457ff9f
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
pipeline {
agent any
environment {
PROJECT = 'bfin--zaplate'
}
stages {
stage('branch: master') {
when {
branch 'master'
}
steps {
sh 'docker-phpunit -u 5.5 7.4'
}
post {
success {
sh 'jenkins-postproc'
}
}
}
}
}

0 comments on commit 457ff9f

Please sign in to comment.