Skip to content

Commit

Permalink
Improve Jenkinsfile.
Browse files Browse the repository at this point in the history
  • Loading branch information
rsur committed Oct 2, 2020
1 parent 530155e commit 1f40f26
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,20 @@ pipeline {
branch 'master'
}
steps {
sh 'docker-phpunit -u 7.0 7.4'
sh 'docker-phpunit 7.0 7.4'
}
post {
success {
sh 'jenkins-postproc'
}
}
}
stage('release') {
when {
tag '*'
}
steps {
sh 'docker-phpunit 7.0 7.4'
}
post {
success {
Expand Down

0 comments on commit 1f40f26

Please sign in to comment.