X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=Makefile;h=7f5092b55703b3ada1fcf0caab0355bf97dafe29;hb=d9ca7c9604aa67c6eb9ec3b25e3903918555b816;hp=b8c8a781997d94689a8d99636783d94d6929ea59;hpb=6b0dd5502489c83cc4a0e6e9240b41a9bb3f0ed6;p=vpp.git diff --git a/Makefile b/Makefile index b8c8a781997..7f5092b5570 100644 --- a/Makefile +++ b/Makefile @@ -635,10 +635,13 @@ ifeq ($(OS_ID),ubuntu) @make vom-pkg-deb endif +MAKE_VERIFY_GATE_OS ?= ubuntu-18.04 verify: pkg-verify -ifeq ($(OS_ID)-$(OS_VERSION_ID),ubuntu-18.04) +ifeq ($(OS_ID)-$(OS_VERSION_ID),$(MAKE_VERIFY_GATE_OS)) $(call banner,"Testing vppapigen") @src/tools/vppapigen/test_vppapigen.py $(call banner,"Running tests") @make COMPRESS_FAILED_TEST_LOGS=yes RETRIES=3 test +else + $(call banner,"Skipping tests. Tests under 'make verify' supported on $(MAKE_VERIFY_GATE_OS)") endif