Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test tools with MODEL=32 too #164

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions buildkite/build_project.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down