php-kilo/Jenkinsfile

16 lines
334 B
Plaintext
Raw Normal View History

2019-11-20 16:11:31 -05:00
pipeline {
agent {
dockerfile {
args '-u root --privileged'
}
}
2019-11-20 16:11:31 -05:00
stages {
2019-12-04 10:46:26 -05:00
stage('PHP 7.4') {
2019-11-20 16:11:31 -05:00
steps {
sh 'curl -sS https://getcomposer.org/installer | php'
2019-12-04 10:46:26 -05:00
sh 'php composer.phar install'
2019-11-20 16:18:32 -05:00
sh 'phpdbg -qrr -- ./vendor/bin/phpunit --coverage-text --colors=never -c phpunit.xml tests'
2019-11-20 16:11:31 -05:00
}
}
}
}