ClearBowl/Jenkinsfile

19 lines
378 B
Plaintext
Raw Normal View History

2019-11-16 20:53:54 +01:00
pipeline {
agent {
docker { image 'circleci/php:7.3' }
}
stages {
stage('Build'){
steps {
sh 'composer install'
2019-11-16 21:03:13 +01:00
sh 'cp .env.example .env && php artisan key:generate'
2019-11-16 20:53:54 +01:00
}
}
stage('Test') {
steps {
sh 'vendor/bin/phpunit'
}
}
}
}