diff options
| -rw-r--r-- | tests/projects/c/library_with_cmakelists/test.lua | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/tests/projects/c/library_with_cmakelists/test.lua b/tests/projects/c/library_with_cmakelists/test.lua index b76241be2..3c28e0c3e 100644 --- a/tests/projects/c/library_with_cmakelists/test.lua +++ b/tests/projects/c/library_with_cmakelists/test.lua @@ -1,6 +1,13 @@ -- main entry function main(t) - -- build project - t:build() + -- freebsd ci is slower + if is_host("bsd") then + return + end + + -- only for x86/x64, because it will take too long time on ci with arm/mips + if os.subarch():startswith("x") or os.subarch() == "i386" then + t:build() + end end |
