Update Jenkinsfile to change parameter types for parallel downloads and conversions to strings

Signed-off-by: Stephen Simpson <stevo81989@gmail.com>
This commit is contained in:
2025-11-26 10:55:43 -06:00
parent c3fef46d6a
commit 411abf8683

10
Jenkinsfile vendored
View File

@@ -50,12 +50,16 @@ spec:
defaultValue: 'rockyman', defaultValue: 'rockyman',
description: 'B2 bucket name for uploads' description: 'B2 bucket name for uploads'
) )
number( string(
name: 'PARALLEL_DOWNLOADS', name: 'PARALLEL_DOWNLOADS',
defaultValue: 5, defaultValue: '5',
description: 'Number of parallel downloads' description: 'Number of parallel downloads'
) )
number( string(
name: 'PARALLEL_CONVERSIONS',
defaultValue: '10',
description: 'Number of parallel conversions'
)
name: 'PARALLEL_CONVERSIONS', name: 'PARALLEL_CONVERSIONS',
defaultValue: 10, defaultValue: 10,
description: 'Number of parallel conversions' description: 'Number of parallel conversions'