Jenkinsfile: Add support for fct and minimal image

This commit is contained in:
Alexandre Bard 2020-09-29 11:59:10 +02:00
parent 391382b5f3
commit be7e157b41
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -8,7 +8,7 @@ pipeline {
parameters {
choice(name: 'MACHINE_TYPE', choices: ['am335x-nmhw21', 'imx8-nmhw23', 'am335x-nmhw24', 'am335x-hw25', 'am335x-hw26'], description: 'choose target platform')
choice(name: 'IMAGE_TYPE', choices: ['bootloader', 'release', 'dev', 'vcu', 'lava', 'sdk'], description: 'choose target platform')
choice(name: 'IMAGE_TYPE', choices: ['bootloader', 'release', 'dev', 'vcu', 'lava', 'fct', 'minimal', 'sdk'], description: 'choose target platform')
booleanParam(name: 'RELEASE_BUILD', defaultValue: false, description: ' use latest tagged release intead of latest versions')
booleanParam(name: 'CLEAN_BUILD', defaultValue: false, description: 'clean all temp directories before build starts')
}