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

Commit

Permalink
Fix MBCC & scala publish pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
stu1130 committed Feb 21, 2020
1 parent 9dcf71d commit 74adc35
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ci/publish/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ utils.assign_node_labels(utility: 'restricted-utility', linux_cpu: 'restricted-m
// CPU and GPU. OSX nodes are not currently supported by Jenkins
def nodeMap = ['cpu': NODE_LINUX_CPU, 'gpu': NODE_LINUX_GPU_P3]
def scalaOSMap = ['cpu': 'linux-x86_64-cpu', 'gpu': 'linux-x86_64-gpu']
def scalaVariantMap = ['cpu': 'mkl', 'gpu': 'cu92mkl']
def scalaVariantMap = ['cpu': 'cpu', 'gpu': 'cu92']

def wrapStep(nodeToRun, workspaceName, step) {
return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ run_models() {
echo "Running training files and preparing models"
echo '=========================='
export MXNET_ENFORCE_DETERMINISM=1
python model_backwards_compat_train.py
python3 model_backwards_compat_train.py
echo '=========================='
}

install_mxnet() {
version=$1
echo "Installing MXNet "$version
pip install mxnet==$version --user
pip3 install mxnet==$version --user
}

## Cuts the string and gives only the major version part.
Expand Down

0 comments on commit 74adc35

Please sign in to comment.