From e1c84491c7f129ce52c3c8dc051a27e7e2e553e1 Mon Sep 17 00:00:00 2001 From: MoonlightSentinel Date: Wed, 9 Feb 2022 14:33:14 +0100 Subject: [PATCH] ci.sh: Also run dmd's unit tests auto-tester-test omits these tests due to the ancient host compiler --- ci.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci.sh b/ci.sh index 9eae136801..6e03a04de9 100755 --- a/ci.sh +++ b/ci.sh @@ -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 }