summaryrefslogtreecommitdiff
path: root/tests/projects/c/library_with_cmakelists/test.lua
blob: 3c28e0c3e742c5f536a008a4d8e1a6d447c64fe2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
-- main entry
function main(t)

    -- 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