You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by zh...@apache.org on 2021/03/19 16:32:47 UTC

[incubator-mxnet] branch master updated: Update ci/dev_menu.py file (#20053)

This is an automated email from the ASF dual-hosted git repository.

zhasheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/master by this push:
     new 583f540  Update ci/dev_menu.py file (#20053)
583f540 is described below

commit 583f540898b04ae4e5b7ab1d4efadb7792e3505c
Author: bartekkuncer <ba...@intel.com>
AuthorDate: Fri Mar 19 17:30:51 2021 +0100

    Update ci/dev_menu.py file (#20053)
    
    Some functions have been renamed or removed from runtime_functions.sh file
    but their calls have not been updated in dev_menu.py file yet. This change
    updates the build commands in dev_menu.py file, so that the function names
    used within them match those from runtime_functions.sh file.
---
 ci/dev_menu.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/ci/dev_menu.py b/ci/dev_menu.py
index 319d8a7..4e996bf 100644
--- a/ci/dev_menu.py
+++ b/ci/dev_menu.py
@@ -122,7 +122,7 @@ COMMANDS = OrderedDict([
         "pytest -v tests/python/unittest/"
     ),
     ('[Docker] Build the MXNet binary - outputs to "lib/"',
-        "ci/build.py --platform ubuntu_cpu /work/runtime_functions.sh build_ubuntu_cpu_docs"),
+        "ci/build.py --platform ubuntu_cpu /work/runtime_functions.sh build_ubuntu_cpu"),
     ('[Docker] Build the Jekyll website - outputs to "docs/static_site/build/html/"',
         "ci/build.py --platform ubuntu_cpu_jekyll /work/runtime_functions.sh build_jekyll_docs"),
     ('[Docker] Build the Python API docs - outputs to "docs/python_docs/python/build/_build/html/"',
@@ -154,7 +154,7 @@ COMMANDS = OrderedDict([
     ('[Docker] Python3 ARMv7 unittests (QEMU)',
     [
         "ci/build.py -p armv7",
-        "ci/build.py -p test.armv7 /work/runtime_functions.sh unittest_ubuntu_python3_armv7"
+        "ci/build.py -p test.armv7 /work/runtime_functions.sh unittest_ubuntu_python3_arm"
     ]),
     ('Clean (RESET HARD) repository (Warning! erases local changes / DATA LOSS)',
        Confirm("ci/docker/runtime_functions.sh clean_repo"))