Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Changes RELEASE_JOB_TYPE to string parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
perdasilva committed Sep 18, 2019
1 parent da7976c commit 6afee10
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion cd/Jenkinsfile_release_job
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,12 @@ pipeline {
// Release parameters
string(defaultValue: "Generic release job", description: "Optional Job name", name: "RELEASE_JOB_NAME")
string(defaultValue: "master", description: "Git Commit to Build", name: "COMMIT_ID")
choice(choices: ["mxnet_lib/static", "mxnet_lib/dynamic"], description: "Pipeline to build", name: "RELEASE_JOB_TYPE")

# mxnet_lib/static, mxnet_lib/dynamic
# Using string instead of choice parameter to keep the changes to the parameters minimal to avoid
# any disruption caused by different COMMIT_ID values chaning the job parameter configuration on
# Jenkins.
string(defaultValue: "mxnet_lib/static", description: "Pipeline to build", name: "RELEASE_JOB_TYPE")
string(defaultValue: "cpu,mkl,cu90,cu90mkl,cu92,cu92mkl,cu100,cu100mkl,cu101,cu101mkl", description: "Comma separated list of variants", name: "MXNET_VARIANTS")
booleanParam(defaultValue: false, description: 'Whether this is a release build or not', name: "RELEASE_BUILD")
}
Expand Down

0 comments on commit 6afee10

Please sign in to comment.