1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
From: Ryan Kavanagh <rak@debian.org>
Date: Tue, 20 May 2025 12:14:31 -0400
Subject: Don't automatically run tests during build
Forwarded: not-needed
Last-Update: 2022-01-01
We would like to control when we run tests so that, e.g.,
no tests are run if DEB_BUILD_OPTIONS includes nocheck.
Drop the tests from the build, and instead call them
from debian/rules when desired.
Last-Update: 2022-01-01
---
Makefile | 2 --
1 file changed, 2 deletions(-)
diff --git a/Makefile b/Makefile
index 123fb18..4d6edc2 100644
--- a/Makefile
+++ b/Makefile
@@ -65,7 +65,6 @@ basis-check:
.PHONY: basis
basis:
$(MAKE) basis-no-check
- $(MAKE) basis-check
.PHONY: compiler
compiler:
@@ -131,7 +130,6 @@ libraries-check:
.PHONY: libraries
libraries:
$(MAKE) libraries-no-check
- $(MAKE) libraries-check
.PHONY: runtime
runtime:
|