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

55 lines
1.4 KiB
Groovy

pipeline {
agent 'mapguesser'
agent {
node {
label 'mapguesser'
customWorkspace 'workspace/mapguesser'
}
}
stages {
stage('Checkout') {
steps {
checkout scm
}
}
stage('Unit Testing') {
agent {
dockerfile {
filename 'docker/Dockerfile-test'
dir '.'
reuseNode true
}
}
steps {
sh '/composer/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 /composer/vendor/bin/phpstan analyse -c phpstan.neon --error-format=prettyJson > static_code_analysis_results.json'
}
post {
success {
archiveArtifacts 'static_code_analysis_results.json'
}
}
}
}
}