From cf20c18eceec42f9cca6721b42f91d2b491310e4 Mon Sep 17 00:00:00 2001 From: Sebastian Wilzbach Date: Thu, 16 Aug 2018 11:59:50 +0200 Subject: [PATCH] Add a special buildkite Makefile target that can be used to run Phobos testsuite on Buildkite --- posix.mak | 3 +++ 1 file changed, 3 insertions(+) diff --git a/posix.mak b/posix.mak index 41a35c22a5d..905241c9912 100644 --- a/posix.mak +++ b/posix.mak @@ -636,4 +636,7 @@ auto-tester-build: all checkwhitespace .PHONY : auto-tester-test auto-tester-test: unittest betterC +.PHONY: buildkite-test +buildkite-test: unittest betterC + .DELETE_ON_ERROR: # GNU Make directive (delete output files on error)