better named tests and log local-docker params
parent
3377ebfda5
commit
f029159324
|
|
@ -3611,12 +3611,14 @@ class LocalDockerCloudRunner {
|
||||||
const { workspace, actionFolder } = model_1.Action;
|
const { workspace, actionFolder } = model_1.Action;
|
||||||
let myOutput = '';
|
let myOutput = '';
|
||||||
const content = [
|
const content = [
|
||||||
...secrets.map((x) => {
|
...secrets.map((x, index) => {
|
||||||
secrets[x.EnvironmentVariable] = x.ParameterValue;
|
secrets[x.EnvironmentVariable] = x.ParameterValue;
|
||||||
|
delete secrets[index];
|
||||||
return;
|
return;
|
||||||
}),
|
}),
|
||||||
...environment.map((x) => {
|
...environment.map((x, index) => {
|
||||||
environment[x.name] = x.value;
|
environment[x.name] = x.value;
|
||||||
|
delete environment[index];
|
||||||
return;
|
return;
|
||||||
}),
|
}),
|
||||||
];
|
];
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -62,13 +62,15 @@ class LocalDockerCloudRunner implements ProviderInterface {
|
||||||
const { workspace, actionFolder } = Action;
|
const { workspace, actionFolder } = Action;
|
||||||
let myOutput = '';
|
let myOutput = '';
|
||||||
const content = [
|
const content = [
|
||||||
...secrets.map((x) => {
|
...secrets.map((x, index) => {
|
||||||
secrets[x.EnvironmentVariable] = x.ParameterValue;
|
secrets[x.EnvironmentVariable] = x.ParameterValue;
|
||||||
|
delete secrets[index];
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}),
|
}),
|
||||||
...environment.map((x) => {
|
...environment.map((x, index) => {
|
||||||
environment[x.name] = x.value;
|
environment[x.name] = x.value;
|
||||||
|
delete environment[index];
|
||||||
|
|
||||||
return;
|
return;
|
||||||
}),
|
}),
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue