trace contents of python virtualenv for debugging CI
This commit is contained in:
@@ -146,8 +146,10 @@ class CompilerTools {
|
|||||||
// In some cases this might be bad if the virtual environment gets bad
|
// In some cases this might be bad if the virtual environment gets bad
|
||||||
// versions of dependencies stuck in it
|
// versions of dependencies stuck in it
|
||||||
var envFolder = '${args.outputFolder}-env';
|
var envFolder = '${args.outputFolder}-env';
|
||||||
Prelude.assertProcess("python", ["-m", "venv", envFolder]);
|
trace(Prelude.assertProcess("python", ["-m", "venv", envFolder]).replace("\n", " "));
|
||||||
var envPython = Path.join([envFolder, "Scripts", "python"]);
|
var envPython = Path.join([envFolder, "Scripts", "python"]);
|
||||||
|
trace(Prelude.assertProcess("ls", [envFolder]).replace("\n", " "));
|
||||||
|
trace(Prelude.assertProcess("ls", [Path.join([envFolder, "Scripts"])]).replace("\n", " "));
|
||||||
command = envPython;
|
command = envPython;
|
||||||
switch (args.langProjectFile.extension()) {
|
switch (args.langProjectFile.extension()) {
|
||||||
case "txt":
|
case "txt":
|
||||||
|
Reference in New Issue
Block a user