staging: normalize Services menu across locales

This commit is contained in:
2026-05-02 20:33:16 +02:00
parent 348d14c330
commit e7bcbe53ab
2 changed files with 128 additions and 0 deletions

13
Jenkinsfile vendored
View File

@@ -152,6 +152,19 @@ PY
parameters: [string(name: 'PROJECT_NAME', value: 'mandelstudio')]
}
}
stage('Normalize Services Menu') {
agent { label 'built-in' }
options {
timeout(time: 5, unit: 'MINUTES')
}
steps {
sh '''
set -e
REMOTE_CMD="cd '${STAGING_AUDIT_PROJECT_DIR}' && '${STAGING_AUDIT_MANAGE}' normalize_services_menu"
sudo -n -u mandel -g www-data /srv/apps/mandel-dashboard/.venv/bin/python /srv/apps/mandel-dashboard/bin/deploy_stg_from_jenkins.py "${STAGING_AUDIT_PROJECT_NAME}" --command "$REMOTE_CMD"
'''
}
}
stage('Post-Deploy Multilingual Audit') {
agent { label 'built-in' }
options {