Have make verify check deb and rpm builds 26/3926/8
authorEd Warnicke <hagbard@gmail.com>
Tue, 22 Nov 2016 17:57:30 +0000 (17:57 +0000)
committerDamjan Marion <dmarion.lists@gmail.com>
Tue, 29 Nov 2016 17:35:44 +0000 (17:35 +0000)
Change-Id: I7fe3558118835240ecd155609821f9de2d609553
Signed-off-by: Ed Warnicke <hagbard@gmail.com>
Makefile

index 12e8904..f6dcfc2 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -340,6 +340,11 @@ define banner
 endef
 
 verify: install-dep $(BR)/.bootstrap.ok
+       $(call banner,"Building for PLATFORM=vpp using gcc")
+       @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages
+       $(call banner,"Building for PLATFORM=vpp_lite using gcc")
+       @make -C build-root PLATFORM=vpp_lite TAG=vpp_lite wipe-all install-packages
+       @make test
 ifeq ($(OS_ID),ubuntu)
 ifeq ($(OS_VERSION_ID),16.04)
        $(call banner,"Installing dependencies")
@@ -348,9 +353,10 @@ ifeq ($(OS_VERSION_ID),16.04)
        $(call banner,"Building for PLATFORM=vpp using clang")
        @make -C build-root CC=clang PLATFORM=vpp TAG=vpp_clang wipe-all install-packages
 endif
+       @make pkg-deb
 endif
-       $(call banner,"Building for PLATFORM=vpp using gcc")
-       @make -C build-root PLATFORM=vpp TAG=vpp wipe-all install-packages
-       $(call banner,"Building for PLATFORM=vpp_lite using gcc")
-       @make -C build-root PLATFORM=vpp_lite TAG=vpp_lite wipe-all install-packages
-       @make test
+ifeq ($(OS_ID),centos)
+       @make pkg-rpm
+endif
+
+