Browse Source

[lua] streamline some of the info from luarocks

Justin Donaldson 7 years ago
parent
commit
dd1c8fd89a
1 changed files with 10 additions and 1 deletions
  1. 10 1
      tests/runci/targets/Lua.hx

+ 10 - 1
tests/runci/targets/Lua.hx

@@ -52,8 +52,17 @@ class Lua {
 			Sys.println('Lua Version: $lv');
 			runCommand("hererocks", [envpath, lv, "-rlatest", "-i"]);
 			trace('path: ' + Sys.getEnv("PATH"));
+
+
 			runCommand("lua",["-v"]);
-			runCommand("luarocks",[]);
+
+			runCommand("luarocks", ["help", "--lua-incdir"]);
+			runCommand("luarocks", ["help", "--lua-libdir"]);
+			runCommand("luarocks", ["help", "--lua-ver"]);
+			runCommand("luarocks", ["help", "--system-config"]);
+			runCommand("luarocks", ["help", "--user-config"]);
+			runCommand("luarocks", ["help", "--rock-trees"]);
+
 			installLuaVersionDependencies(lv);
 
 			changeDirectory(unitDir);