marcoabreu commented on a change in pull request #15051: CD Framework + static 
binary release
URL: https://github.com/apache/incubator-mxnet/pull/15051#discussion_r286912590
 
 

 ##########
 File path: ci/cd/Jenkinsfile_release_job
 ##########
 @@ -0,0 +1,103 @@
+// -*- mode: groovy -*-
+
+// Licensed to the Apache Software Foundation (ASF) under one
+// or more contributor license agreements.  See the NOTICE file
+// distributed with this work for additional information
+// regarding copyright ownership.  The ASF licenses this file
+// to you under the Apache License, Version 2.0 (the
+// "License"); you may not use this file except in compliance
+// with the License.  You may obtain a copy of the License at
+//
+//   http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing,
+// software distributed under the License is distributed on an
+// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+// KIND, either express or implied.  See the License for the
+// specific language governing permissions and limitations
+// under the License.
+//
+// Jenkins pipeline
+// See documents at https://jenkins.io/doc/book/pipeline/jenkinsfile/
+
+// This job executes a "generic" (CD) release job.
+// The pipeline to be executed is defined by the "RELEASE_JOB_TYPE" pipeline 
parameter.
+// This is the path (relative to the CD directory) to a directory containing 
the following file groovy script
+// `Jenkins_pipeline.groovy`. 
+// See `cd` directory README for more details.
+
+// timeout of each step in minutes
+max_time = 180
+
+pipeline {
+  agent {
+    label 'restricted-utility'
+  }
+
+  parameters {
+    // Release parameters
+    string(defaultValue: "", description: 'Optional commit id within specified 
branch to use for build', name: "MXNET_SHA")
+    string(defaultValue: "Generic release job", description: "Optional Job 
name", name: "RELEASE_JOB_NAME")
+    string(defaultValue: "", description: "Job Type e.g. 
binary_release/static, python/docker, runtime_images, etc.", name: 
'RELEASE_JOB_TYPE')
+    string(defaultValue: 
"cpu,mkl,cu80,cu80mkl,cu90,cu90mkl,cu92,cu92mkl,cu100,cu100mkl", description: 
"Comma separated list of variants", name: "MXNET_VARIANTS")
 
 Review comment:
   Same here

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
[email protected]


With regards,
Apache Git Services

Reply via email to