Quit build if submodule not found 96/9496/1
authorThanh Ha <thanh.ha@linuxfoundation.org>
Mon, 19 Mar 2018 19:30:08 +0000 (15:30 -0400)
committerThanh Ha <thanh.ha@linuxfoundation.org>
Mon, 19 Mar 2018 19:30:34 +0000 (15:30 -0400)
In the monolithic docs build we only care to build if the
project is really a submodule of the monolithic docs build.
If not then skip the build as the project should be providing
their own docs verify job.

Issue: RELENG-845
Change-Id: I9bc146170e150097b3b9a30ec0456173bba9b1ef
Signed-off-by: Thanh Ha <thanh.ha@linuxfoundation.org>
shell/rtd-verify.sh

index 61c1974..7f403eb 100644 (file)
@@ -16,6 +16,14 @@ set -xe -o pipefail
 
 echo "---> Fetching project"
 if [ "$GERRIT_PROJECT" != "$PROJECT" ]; then
+    # Only test projects that are a submodule of docs
+    if ! git submodule | grep "$GERRIT_PROJECT"; then
+        echo "WARN: Project is not a submodule of docs. This likely means " \
+            "the project is not participating in the monolithic docs build " \
+            "and should have their own verify job. Quitting job run..."
+        exit 0
+    fi
+
     cd "docs/submodules/$GERRIT_PROJECT"
 fi