soko-web/Jenkinsfile
Pőcze Bence a17a88e9d4
All checks were successful
soko-web/pipeline/head This commit looks good
initial commit for soko-web
2023-04-07 19:32:15 +02:00

60 lines
1.5 KiB
Groovy

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