Skip to content

Commit

Permalink
Makefile: stub out all auto-tester-build and auto-tester-test recipes
Browse files Browse the repository at this point in the history
  • Loading branch information
ibuclaw committed Jan 2, 2023
1 parent f4f246a commit 70b78e4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 16 deletions.
12 changes: 2 additions & 10 deletions posix.mak
Original file line number Diff line number Diff line change
Expand Up @@ -702,20 +702,12 @@ $(ROOT)/betterctests/betterc_module_tests: test/betterc_module_tests.d $(addsuff
################################################################################

.PHONY : auto-tester-build
ifneq (,$(findstring Darwin_64_32, $(PWD)))
auto-tester-build:
echo "Darwin_64_32_disabled"
else
auto-tester-build: all checkwhitespace
endif
echo "Auto-Tester has been disabled"

.PHONY : auto-tester-test
ifneq (,$(findstring Darwin_64_32, $(PWD)))
auto-tester-test:
echo "Darwin_64_32_disabled"
else
auto-tester-test: unittest
endif
echo "Auto-Tester has been disabled"

.PHONY: buildkite-test
buildkite-test: unittest betterc
Expand Down
4 changes: 2 additions & 2 deletions win32.mak
Original file line number Diff line number Diff line change
Expand Up @@ -568,7 +568,7 @@ install: phobos.zip
unzip -o phobos.zip -d $(DIR)\src\phobos

auto-tester-build:
echo "Windows builds have been disabled on auto-tester"
echo "Auto-Tester has been disabled"

auto-tester-test:
echo "Windows builds have been disabled on auto-tester"
echo "Auto-Tester has been disabled"
6 changes: 2 additions & 4 deletions win64.mak
Original file line number Diff line number Diff line change
Expand Up @@ -507,12 +507,10 @@ install: phobos.zip $(LIB)
unzip -o phobos.zip -d $(DIR)\src\phobos

auto-tester-build:
echo "Windows builds have been disabled on auto-tester"
echo "Auto-Tester has been disabled"

JOBS=$(NUMBER_OF_PROCESSORS)
GMAKE=gmake

auto-tester-test:
echo "Windows builds have been disabled on auto-tester"
#"$(GMAKE)" -j$(JOBS) -f posix.mak unittest BUILD=release DMD="$(DMD)" OS=win$(MODEL) \
#CUSTOM_DRUNTIME=1 PIC=0 MODEL=$(MODEL) DRUNTIME=$(DRUNTIMELIB) CC=$(CC)
echo "Auto-Tester has been disabled"

0 comments on commit 70b78e4

Please sign in to comment.