marcoabreu commented on a change in pull request #10827: [MXNET-405][WIP] Add 2 
new pipelines to the Official CI and run nightly tests. 
URL: https://github.com/apache/incubator-mxnet/pull/10827#discussion_r195541584
 
 

 ##########
 File path: ci/docker/runtime_functions.sh
 ##########
 @@ -678,6 +678,65 @@ build_docs() {
     popd
 }
 
+
+# Functions that run the nightly Tests:
+
+#Runs Apache RAT Check on MXNet Source for License Headers
+nightly_test_rat_check() {
+    set -ex
+    #This Test fails without changing permissions
+    chmod -R 0755 tests/nightly/
+    ./tests/nightly/apache_rat_license_check/license_check.sh
+}
+
+#Checks MXNet for Compilation Warnings
+nightly_test_compilation_warning() {
+    set -ex
+    export PYTHONPATH=./python/
+    #This test fails without changing permissions
+    chmod -R 0755 tests/nightly/
+    ./tests/nightly/compilation_warnings/compilation_warnings.sh
+}
+
+#Checks the MXNet Installation Guide - currently checks pip, build from source 
and virtual env on cpu and gpu
+nightly_test_installation() {
+    set -ex
+    #chmod -R 0755 ./tests/jenkins
+    source ./tests/jenkins/run_test_installation_docs.sh docs/install/index.md 
1 1686; ${1}
+}
+
+#Runs a simple MNIST training example
+nightly_test_image_classification() {
+    #chmod -R 0755 tests/nightly/
 
 Review comment:
   clean up

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


With regards,
Apache Git Services

Reply via email to