diff --git a/Jenkinsfile b/Jenkinsfile index a86b680..8c166ad 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -42,7 +42,7 @@ spec: parameters { string( name: 'VERSIONS', - defaultValue: '8.10 9.6 10.0', + defaultValue: '8.10 9.6 10.1', description: 'Rocky Linux versions to build (space-separated)' ) string( @@ -50,6 +50,16 @@ spec: defaultValue: 'rockyman', description: 'B2 bucket name for uploads' ) + number( + name: 'PARALLEL_DOWNLOADS', + defaultValue: 5, + description: 'Number of parallel downloads' + ) + number( + name: 'PARALLEL_CONVERSIONS', + defaultValue: 10, + description: 'Number of parallel conversions' + ) } options { @@ -87,8 +97,10 @@ docker run --rm \ -v "$(pwd)/html:/app/html" \ -v "$(pwd)/tmp:/data/tmp" \ rocky-man:${BUILD_NUMBER} \ - --versions ${VERSIONS} \ - --verbose + --versions ${VERSIONS} \ + --verbose \ + --parallel-downloads ${PARALLEL_DOWNLOADS} \ + --parallel-conversions ${PARALLEL_CONVERSIONS} ''' } }