ci.sh: Also run dmd's unit tests

auto-tester-test omits these tests due to the ancient host compiler
This commit is contained in:
MoonlightSentinel 2022-02-09 14:33:14 +01:00
parent ce00fb0587
commit e1c84491c7
No known key found for this signature in database
GPG key ID: C66F4751A7498694

4
ci.sh
View file

@ -98,9 +98,9 @@ test() {
test_dmd() {
# test fewer compiler argument permutations for PRs to reduce CI load
if [ "$FULL_BUILD" == "true" ] && [ "$OS_NAME" == "linux" ]; then
make -j1 -C test auto-tester-test MODEL=$MODEL N=$N # all ARGS by default
make -j1 -C test MODEL=$MODEL N=$N # all ARGS by default
else
make -j1 -C test auto-tester-test MODEL=$MODEL N=$N ARGS="-O -inline -release"
make -j1 -C test MODEL=$MODEL N=$N ARGS="-O -inline -release"
fi
}