Prepared for AlmaLinux 10 #32

Merged
mpavlov merged 13 commits from dev into master 2025-07-20 19:33:28 +03:00
16 changed files with 500 additions and 373 deletions
Showing only changes of commit 56e001e2a8 - Show all commits

14
Jenkinsfile vendored
View File

@@ -17,8 +17,22 @@ pipeline {
string(name: "rproxy_service_name", defaultValue: "", trim: true, description: "Service name (for 'Add config' job only)")
string(name: "rproxy_service_port", defaultValue: "", trim: true, description: "Service port (for 'Add config' job only)")
string(name: "rproxy_service_address", defaultValue: "", trim: true, description: "Service address (for 'Add config' job only)")
booleanParam(name: 'update_job', defaultValue: false, description: 'Update job, free run, no changes')
}
stages {
stage('Update Job') {
when {
expression {
return params.update_job
}
}
steps {
script {
currentBuild.getRawBuild().getExecutor().interrupt(Result.SUCCESS)
sleep(1)
}
}
}
stage('Save certs') {
when {
expression {