Fix Jenkins build type choice

This commit is contained in:
RichardG867
2021-11-08 22:59:18 -03:00
parent 70e2503fc7
commit a0c27de4d9

View File

@@ -39,8 +39,7 @@ pipeline {
parameters {
choice(name: 'BUILD_TYPE',
choices: ['none', 'alpha', 'beta', 'release'],
defaultValue: 'beta',
choices: ['beta', 'none', 'alpha', 'beta', 'release'], // duplicated on purpose, first is default
description: 'Build type to pass on to CMake. This may affect the UI icon and feature set.')
}