package An official xmake package repository
https://xrepo.xmake.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
3.4 KiB
113 lines
3.4 KiB
-- imports |
|
import("core.base.option") |
|
import("core.platform.platform") |
|
import("packages", {alias = "get_packages"}) |
|
|
|
-- the options |
|
local options = |
|
{ |
|
{'v', "verbose", "k", nil, "Enable verbose information." } |
|
, {'D', "diagnosis", "k", nil, "Enable diagnosis information." } |
|
, {'p', "plat", "kv", nil, "Set the given platform." } |
|
, {'a', "arch", "kv", nil, "Set the given architecture." } |
|
, {nil, "ndk", "kv", nil, "Set the android NDK directory."} |
|
, {nil, "packages", "vs", nil, "The package list." } |
|
} |
|
|
|
-- require packages |
|
function _require_packages(argv, packages) |
|
local config_argv = {"f", "-c"} |
|
if argv.verbose then |
|
table.insert(config_argv, "-v") |
|
end |
|
if argv.diagnosis then |
|
table.insert(config_argv, "-D") |
|
end |
|
if argv.plat then |
|
table.insert(config_argv, "--plat=" .. argv.plat) |
|
end |
|
if argv.arch then |
|
table.insert(config_argv, "--arch=" .. argv.arch) |
|
end |
|
if argv.ndk then |
|
table.insert(config_argv, "--ndk=" .. argv.ndk) |
|
end |
|
os.execv("xmake", config_argv) |
|
local require_argv = {"require", "-f", "-y"} |
|
if argv.verbose then |
|
table.insert(require_argv, "-v") |
|
end |
|
if argv.diagnosis then |
|
table.insert(require_argv, "-D") |
|
end |
|
table.join2(require_argv, packages) |
|
os.execv("xmake", require_argv) |
|
end |
|
|
|
-- the given package is supported? |
|
function _package_is_supported(argv, packagename) |
|
local packages = get_packages() |
|
if packages then |
|
local packages_plat = packages[argv.plat or os.host()] |
|
for _, package in ipairs(packages_plat) do |
|
if package and packagename:split("%s+")[1] == package.name then |
|
local arch = argv.arch or platform.archs(plat)[1] or os.arch() |
|
for _, package_arch in ipairs(package.archs) do |
|
if arch == package_arch then |
|
return true |
|
end |
|
end |
|
end |
|
end |
|
end |
|
end |
|
|
|
-- the main entry |
|
function main(...) |
|
|
|
-- parse arguments |
|
local argv = option.parse({...}, options, "Test all the given or changed packages.") |
|
|
|
-- get packages |
|
local packages = argv.packages or {} |
|
if #packages == 0 then |
|
local files = os.iorun("git diff --name-only HEAD^") |
|
for _, file in ipairs(files:split('\n'), string.trim) do |
|
if file:find("packages", 1, true) and path.filename(file) == "xmake.lua" then |
|
local package = path.filename(path.directory(file)) |
|
table.insert(packages, package) |
|
end |
|
end |
|
end |
|
if #packages == 0 then |
|
table.insert(packages, "tbox dev") |
|
end |
|
|
|
-- remove unsupported packages |
|
for idx, package in irpairs(packages) do |
|
if not _package_is_supported(argv, package) then |
|
table.remove(packages, idx) |
|
end |
|
end |
|
if #packages == 0 then |
|
print("no testable packages on %s!", argv.plat or os.host()) |
|
return |
|
end |
|
|
|
-- prepare test project |
|
local repodir = os.curdir() |
|
local workdir = path.join(os.tmpdir(), "xmake-repo") |
|
print(packages) |
|
os.setenv("XMAKE_STATS", "false") |
|
os.tryrm(workdir) |
|
os.mkdir(workdir) |
|
os.cd(workdir) |
|
os.exec("xmake create test") |
|
os.cd("test") |
|
print(os.curdir()) |
|
os.exec("xmake repo --add local-repo %s", repodir) |
|
os.exec("xmake repo -l") |
|
|
|
-- require packages |
|
_require_packages(argv, packages) |
|
end
|
|
|