Skip unit tests on sol11 to speed things up.

This commit is contained in:
Darren Tucker 2021-02-18 10:10:00 +11:00
parent 161873035c
commit bc9b0c2570

5
.github/configs vendored
View File

@ -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