Skip to content

Commit

Permalink
Test tools with MODEL=32 too
Browse files Browse the repository at this point in the history
  • Loading branch information
wilzbach committed Aug 13, 2018
1 parent d163b68 commit e6606b0
Showing 1 changed file with 6 additions and 2 deletions.
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 DMD='dmd'
make -f posix.mak test MODEL=32 DMD='dmd' DFLAGS=
;;

msgpack/msgpack-d)
Expand Down

0 comments on commit e6606b0

Please sign in to comment.