summaryrefslogtreecommitdiff
path: root/tests/projects/c++/linkorders/test.lua
diff options
context:
space:
mode:
Diffstat (limited to 'tests/projects/c++/linkorders/test.lua')
-rw-r--r--tests/projects/c++/linkorders/test.lua12
1 files changed, 11 insertions, 1 deletions
diff --git a/tests/projects/c++/linkorders/test.lua b/tests/projects/c++/linkorders/test.lua
index b57362078..704959e28 100644
--- a/tests/projects/c++/linkorders/test.lua
+++ b/tests/projects/c++/linkorders/test.lua
@@ -1,3 +1,13 @@
function main(t)
- 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
+