From aff9ad469caa9c1cb01a7e4fc18912a639325e41 Mon Sep 17 00:00:00 2001 From: Alexander M Pickering Date: Wed, 23 Apr 2025 22:02:03 -0500 Subject: Minor organization --- meta.lua | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/meta.lua b/meta.lua index 0f2be36..52f03e1 100644 --- a/meta.lua +++ b/meta.lua @@ -5,7 +5,7 @@ local lua_versions = { ["54"] = true, } local optimizations = { - tiny = "-Oz", + tiny = "-Oz", size = "-Os", zero = "-O0", one = "-O1", @@ -21,7 +21,8 @@ local compilers = {--[["mingw32",]]"mingw64"--[[,"clang32","clang64"]]} local builds = {} for version, _, name, optimization, rel, flag, _, image in cartesian(lua_versions, optimizations, debug, compilers) do - builds["luafilesystem-" .. version .. "-" .. name .. "-" .. rel .. "-" .. image] = { + local buildname = "luafilesystem-" .. version .. "-" .. name .. "-" .. rel .. "-" .. image + builds[buildname] = { image = "image-luarocks-" .. version.. "-" .. image, requires = { {"git", "luafilesystem"}, @@ -37,6 +38,15 @@ for version, _, name, optimization, rel, flag, _, image in cartesian(lua_version version = version }, } + --[[ + builds[buildname .. "-test"] = { + image = "image-wine", + requires = { + {"cicd", buildname .. ":luafilesystem-scm-1.mingw32-x86_64.rock"}, + {"cicd", "lua-" .. version .. "-" .. optimization .. "-" .. rel .. "-" .. } + } + } + ]] end return builds -- cgit v1.2.3-55-g6feb