You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by cm...@apache.org on 2018/12/14 00:49:09 UTC

[incubator-mxnet] branch understanding-ci created (now 056757c)

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

cmeier pushed a change to branch understanding-ci
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git.


      at 056757c  adjust the integration script so that it does a lein install to install the clojure jar first before running the examples

This branch includes the following new commits:

     new 056757c  adjust the integration script so that it does a lein install to install the clojure jar first before running the examples

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[incubator-mxnet] 01/01: adjust the integration script so that it does a lein install to install the clojure jar first before running the examples

Posted by cm...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 056757c274a64c5a13f2a80f2b4df7b0aa9b9606
Author: gigasquid <cm...@gigasquidsoftware.com>
AuthorDate: Thu Dec 13 19:48:39 2018 -0500

    adjust the integration script so that it does a lein install to install
    the clojure jar first before running the examples
---
 contrib/clojure-package/integration-tests.sh | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/contrib/clojure-package/integration-tests.sh b/contrib/clojure-package/integration-tests.sh
index 3297fdc..7611ce7 100755
--- a/contrib/clojure-package/integration-tests.sh
+++ b/contrib/clojure-package/integration-tests.sh
@@ -19,10 +19,11 @@
 set -evx
 
 MXNET_HOME=${PWD}
-EXAMPLES_HOME=${MXNET_HOME}/contrib/clojure-package/examples
-#cd ${MXNET_HOME}/contrib/clojure-package
-#lein test
-#lein cloverage --codecov
+cd ${MXNET_HOME}/contrib/clojure-package
+# first build the package and install it
+lein install
+
+cd ${MXNET_HOME}/contrib/clojure-package/examples
 for i in `find ${EXAMPLES_HOME} -name test` ; do
 cd ${i} && lein test
 done