mirror of
https://github.com/dlang/dmd.git
synced 2025-04-27 13:40:11 +03:00
Disable unit_tests on older bootstrap builds
This commit is contained in:
parent
05f724cb4a
commit
7f05a442aa
1 changed files with 6 additions and 1 deletions
|
@ -126,7 +126,12 @@ if [ "$MODEL" == "32" ] ; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
"$HOST_DC" -m$MODEL -g -i run.d
|
"$HOST_DC" -m$MODEL -g -i run.d
|
||||||
./run --environment --jobs=$N all ARGS="-O -inline -g" MODEL="$MODEL"
|
targets=("all")
|
||||||
|
if [ "$HOST_DMD_VERSION" = "2.079.0" ] ; then
|
||||||
|
# do not run runnable_cxx or unit_tests with older bootstrap compilers
|
||||||
|
targets=("compilable" "fail_compilation" "runnable" "dshell")
|
||||||
|
fi
|
||||||
|
./run --environment --jobs=$N "${targets[@]}" ARGS="-O -inline -g" MODEL="$MODEL"
|
||||||
|
|
||||||
################################################################################
|
################################################################################
|
||||||
# Prepare artifacts
|
# Prepare artifacts
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue