summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2021-02-18 10:10:00 +1100
committerDarren Tucker <dtucker@dtucker.net>2021-02-18 10:10:00 +1100
commitbc9b0c25703215501da28aa7a6539f96c0fa656f (patch)
tree60c4bb84ab5df9ace2017ed0213cd26945f180dd
parent161873035c12cc22211fc73d07170ade47746bc5 (diff)
Skip unit tests on sol11 to speed things up.
-rwxr-xr-x.github/configs5
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/configs b/.github/configs
index fa8fb6a2..9d2119a8 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