summaryrefslogtreecommitdiff
path: root/tests/projects/package/components/test.lua
blob: a45153181572f951ef093f0c10fd707b106d7116 (plain)
1
2
3
4
5
6
7
8
9
10
function main(t)
    if is_host("bsd") or is_subhost("msys") 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