summaryrefslogtreecommitdiff
path: root/tests/actions/package/localpkg/test.lua
blob: a1f03b215584cf57c64827f1c3764730312ac134 (plain)
1
2
3
4
5
6
7
8
9
10
function main(t)
    if (os.subarch():startswith("x") or os.subarch() == "i386") and not is_host("bsd") then
        os.cd("libfoo")
        os.exec("xmake package -D -o ../bar/build")
        os.cd("../bar")
        os.exec("xmake f -c -D")
        os.exec("xmake -D")
        os.exec("xmake run")
    end
end