From bc9b0c25703215501da28aa7a6539f96c0fa656f Mon Sep 17 00:00:00 2001 From: Darren Tucker Date: Thu, 18 Feb 2021 10:10:00 +1100 Subject: [PATCH] Skip unit tests on sol11 to speed things up. --- .github/configs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/configs b/.github/configs index fa8fb6a27..9d2119a8a 100755 --- a/.github/configs +++ b/.github/configs @@ -69,8 +69,9 @@ case "$config" in esac case "${TARGET_HOST}" in - sol10) - # This VM is 32bit and the unit tests are slow. + sol10|sol11) + # sol10 VM is 32bit and the unit tests are slow. + # sol11 has 4 test configs so skip unit tests to speed up. TEST_TARGET="tests SKIP_UNIT=1" ;; esac