2023-04-07 19:32:15 +02:00
|
|
|
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 {
|
2023-04-17 21:25:39 +02:00
|
|
|
always {
|
2023-04-07 19:32:15 +02:00
|
|
|
archiveArtifacts 'unit_test_results.xml'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
stage('Static Code Analysis') {
|
|
|
|
agent {
|
|
|
|
dockerfile {
|
|
|
|
filename 'Dockerfile'
|
|
|
|
dir '.'
|
|
|
|
reuseNode true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
steps {
|
2023-04-17 21:25:39 +02:00
|
|
|
sh 'php -d memory_limit=1G vendor/bin/phpstan analyse -c phpstan.neon --error-format=prettyJson > static_code_analysis_results.json'
|
2023-04-07 19:32:15 +02:00
|
|
|
}
|
|
|
|
post {
|
2023-04-17 21:25:39 +02:00
|
|
|
always {
|
2023-04-07 19:32:15 +02:00
|
|
|
archiveArtifacts 'static_code_analysis_results.json'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|