Skip to content

Commit

Permalink
Moves ci/cd to cd directory
Browse files Browse the repository at this point in the history
  • Loading branch information
perdasilva authored and szha committed Aug 30, 2019
1 parent 98cdf30 commit 3027296
Show file tree
Hide file tree
Showing 11 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ pipeline {
stage("Init") {
steps {
script {
cd_utils = load('ci/cd/Jenkinsfile_utils.groovy')
cd_utils = load('cd/Jenkinsfile_utils.groovy')
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions ci/cd/Jenkinsfile_release_job → cd/Jenkinsfile_release_job
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ pipeline {
stage("Init") {
steps {
script{
cd_utils = load('ci/cd/Jenkinsfile_utils.groovy')
cd_utils = load('cd/Jenkinsfile_utils.groovy')
ci_utils = load('ci/Jenkinsfile_utils.groovy')
ci_utils.assign_node_labels(
utility: 'restricted-utility',
Expand Down Expand Up @@ -77,7 +77,7 @@ pipeline {
}

// Load script for the supplied job type
def custom_steps = load("ci/cd/${params.RELEASE_JOB_TYPE}/Jenkins_pipeline.groovy")
def custom_steps = load("cd/${params.RELEASE_JOB_TYPE}/Jenkins_pipeline.groovy")

// Extract the pipelines for the variants
def pipelines = [:]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def push_artifact(libmxnet_path, variant, libtype, license_paths = '', dependenc
if(license_paths == null) license_paths = ''
if(dependency_paths == null) dependency_paths = ''

sh "./ci/cd/utils/artifact_repository.py --push --verbose --libtype ${libtype} --variant ${variant} --libmxnet ${libmxnet_path} --licenses ${license_paths} --dependencies ${dependency_paths}"
sh "./cd/utils/artifact_repository.py --push --verbose --libtype ${libtype} --variant ${variant} --libmxnet ${libmxnet_path} --licenses ${license_paths} --dependencies ${dependency_paths}"
}

return this
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ mx_mkldnn_deps = 'lib/libgfortran.so.3, lib/libquadmath.so.0, lib/libiomp5.so, l
// either static or dynamic - depending on how it links to its dependencies
libtype = 'static'

libmxnet_pipeline = load('ci/cd/mxnet_lib/mxnet_lib_pipeline.groovy')
libmxnet_pipeline = load('cd/mxnet_lib/mxnet_lib_pipeline.groovy')

// Builds the static binary for the specified mxnet variant
def build(mxnet_variant) {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion ci/docker/runtime_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1560,7 +1560,7 @@ broken_link_checker() {
test_artifact_repository() {
set -ex
pushd .
cd ci/cd/utils/
cd cd/utils/
pytest test_artifact_repository.py
popd
}
Expand Down

0 comments on commit 3027296

Please sign in to comment.