add jenkins tests
Gitnet/csv/pipeline/head This commit looks good Details

This commit is contained in:
Simon Vieille 2020-09-01 15:40:00 +02:00
parent 7719bd7202
commit cfb04db402
Signed by: deblan
GPG Key ID: 03383D15A1D31745
1 changed files with 25 additions and 0 deletions

25
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,25 @@
pipeline {
agent any
stages {
stage('PHP 7.1') {
steps {
sh '/usr/local/bin/composer-php7.1 install'
sh 'php7.1 /usr/local/bin/phpunit-7'
}
}
stage('PHP 7.3') {
steps {
sh '/usr/local/bin/composer-php7.3 update'
sh 'php7.3 /usr/local/bin/phpunit-9'
}
}
stage('PHP 7.4') {
steps {
sh '/usr/local/bin/composer-php7.4 update'
sh 'php7.4 /usr/local/bin/phpunit-9'
}
}
}
}