mapguesser/Jenkinsfile
Pőcze Bence bc186eb54c
Some checks failed
default-pipeline default-pipeline #12
mapguesser/pipeline/pr-develop There was a failure building this commit
add Jenkinsfile and Dockerfile-test
2021-12-22 01:22:19 +01:00

42 lines
1.1 KiB
Groovy

pipeline {
agent any
stages {
stage('Unit Testing') {
agent {
dockerfile {
filename 'docker/Dockerfile-test'
dir '.'
reuseNode true
}
}
steps {
sh 'vendor/bin/phpunit --log-junit unit_test_results.xml --testdox tests'
}
post {
success {
archiveArtifacts 'unit_test_results.xml'
}
}
}
stage('Static Code Analysis') {
agent {
dockerfile {
filename 'docker/Dockerfile-test'
dir '.'
reuseNode true
}
}
steps {
sh 'php -d memory_limit=1G vendor/bin/phpstan analyse -c phpstan.neon --error-format=prettyJson > static_code_analysis_results.json'
}
post {
success {
archiveArtifacts 'static_code_analysis_results.json'
}
}
}
}
}