summaryrefslogtreecommitdiff
path: root/tests/projects/package/schemes/test.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2026-01-06 22:47:30 +0800
committerruki <[email protected]>2026-01-09 17:59:03 +0800
commit5f6d3db9d4294ddb3f4ba2ded516e9409eb0e9f2 (patch)
tree1e7b91e3247ae07cd9c33033c846b324e3e3a580 /tests/projects/package/schemes/test.lua
parenta1aed61239dc4892d67668a120f6a78367dfde30 (diff)
add scheme test
Diffstat (limited to 'tests/projects/package/schemes/test.lua')
-rw-r--r--tests/projects/package/schemes/test.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/projects/package/schemes/test.lua b/tests/projects/package/schemes/test.lua
new file mode 100644
index 000000000..4c7bad3c2
--- /dev/null
+++ b/tests/projects/package/schemes/test.lua
@@ -0,0 +1,11 @@
+function main(t)
+ -- freebsd ci is slower
+ if is_host("bsd", "solaris") 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