Date: Mon, 9 Nov 2015 15:54:03 +0000 (UTC) From: Mathieu Arnold <mat@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r401111 - head/Mk Message-ID: <201511091554.tA9Fs3iK046229@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mat Date: Mon Nov 9 15:54:03 2015 New Revision: 401111 URL: https://svnweb.freebsd.org/changeset/ports/401111 Log: When !defined(DEVELOPER), stage-qa is not put in the stage pipeline. Make it depend on stage, and point people to adding DEVELOPER=yes to their environment. Discussed with: bapt Sponsored by: Absolight Differential Revision: https://reviews.freebsd.org/D4082 Modified: head/Mk/bsd.port.mk Modified: head/Mk/bsd.port.mk ============================================================================== --- head/Mk/bsd.port.mk Mon Nov 9 15:42:15 2015 (r401110) +++ head/Mk/bsd.port.mk Mon Nov 9 15:54:03 2015 (r401111) @@ -5047,6 +5047,9 @@ check-orphans: check-plist stage-qa: @${ECHO_MSG} "====> Running Q/A tests (stage-qa)" @${SETENV} ${QA_ENV} ${SH} ${SCRIPTSDIR}/qa.sh +.if !defined(DEVELOPER) + @${ECHO_MSG} "/!\\ To run stage-qa automatically add DEVELOPER=yes to your environment /!\\" +.endif .endif # Fake installation of package so that user can pkg delete it later. @@ -5728,6 +5731,8 @@ _STAGE_SEQ= 050:stage-message 100:stage ${_OPTIONS_stage} ${_USES_stage} .if defined(DEVELOPER) _STAGE_SEQ+= 995:stage-qa +.else +stage-qa: stage .endif _TEST_DEP= stage _TEST_SEQ= 100:test-message 150:test-depends 300:pre-test 500:do-test \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201511091554.tA9Fs3iK046229>