HummingBirdAnimeClient/Jenkinsfile

46 lines
868 B
Plaintext
Raw Normal View History

2018-10-11 11:11:24 -04:00
pipeline {
agent none
stages {
2020-03-12 10:24:21 -04:00
stage('setup') {
agent {
docker {
image 'php-alpine'
args '-u root --privileged'
}
steps {
sh 'apk add --no-cache git'
sh 'curl -sS https://getcomposer.org/installer | php'
sh 'rm -f composer.lock'
sh 'php composer.phar install --ignore-platform-reqs'
}
}
}
2019-08-16 14:40:15 -04:00
stage('PHP 7.3') {
agent {
docker {
image 'php:7.3-alpine'
args '-u root --privileged'
}
}
steps {
2020-03-11 15:29:34 -04:00
sh 'php ./vendor/bin/phpunit --colors=never'
2019-08-16 14:40:15 -04:00
}
}
2019-12-05 11:20:06 -05:00
stage('PHP 7.4') {
agent {
docker {
image 'php:7.4-alpine'
args '-u root --privileged'
}
}
steps {
2020-03-12 10:24:21 -04:00
sh 'phpdbg -qrr -- ./vendor/bin/phpunit --colors=never'
2020-03-11 15:03:04 -04:00
step([
$class: 'CloverPublisher',
cloverReportDir: '',
cloverReportFileName: 'build/logs/clover.xml',
2020-03-11 15:03:04 -04:00
])
2019-12-05 11:20:06 -05:00
}
}
}
}