summaryrefslogtreecommitdiff
path: root/tests/projects/package/multiconfig/test.lua
blob: f8321b2f7c5d720b21e24be739f24cf25a4c039d (plain)
1
2
3
4
5
6
7
8
9
10
function main(t)
    -- freebsd ci is slower
    if is_host("bsd", "solaris", "haiku") 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