adding a force-build-rpms check in the commit message 21/16021/1
authorDan Radez <dradez@redhat.com>
Mon, 27 Jun 2016 23:37:48 +0000 (19:37 -0400)
committerDan Radez <dradez@redhat.com>
Mon, 27 Jun 2016 23:37:48 +0000 (19:37 -0400)
force-build-rpms

Change-Id: I70d101b78608414ad5ffb745e6d8a64f59850f61
Signed-off-by: Dan Radez <dradez@redhat.com>
ci/build.sh

index dd9f9fd..fd079c9 100755 (executable)
@@ -113,7 +113,9 @@ fi
 # Conditionally execute RPM build checks if the specs change and target is not rpm or iso
 if [[ "$MAKE_TARGETS" == "images" ]]; then
     commit_file_list=$(git show --pretty="format:" --name-only)
-    if [[ $commit_file_list == *build/Makefile* ]]; then
+    if git show -s | grep "force-build-rpms"; then
+        MAKE_TARGETS+=" rpms"
+    elif [[ $commit_file_list == *build/Makefile* ]]; then
         # Makefile forces all rpms to be checked
         MAKE_TARGETS+=" rpms-check"
     else