From 87bb55a6dac8743a3124c1c5052b632e44c0c006 Mon Sep 17 00:00:00 2001 From: Sebastian Wilzbach Date: Mon, 13 Aug 2018 17:26:19 +0200 Subject: [PATCH] Test tools with MODEL=32 too --- buildkite/build_project.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/buildkite/build_project.sh b/buildkite/build_project.sh index 9e7a6552..69f87663 100755 --- a/buildkite/build_project.sh +++ b/buildkite/build_project.sh @@ -135,8 +135,12 @@ case "$REPO_FULL_NAME" in dlang/tools) # explicit test to avoid Digger setup, see dlang/tools#298 and dlang/tools#301 - make -f posix.mak all DMD='dmd' DFLAGS= - make -f posix.mak test DMD='dmd' DFLAGS= + make -f posix.mak all MODEL=64 DMD='dmd' DFLAGS= + make -f posix.mak test MODEL=64 DMD='dmd' DFLAGS= + # test 32-bit build of the D tools + make -f posix.mak clean + make -f posix.mak all MODEL=32 + make -f posix.mak test MODEL=32 DFLAGS= ;; msgpack/msgpack-d)