cache test should explicitly check cache key from build 1 is included in results log
parent
5a5658f587
commit
870b6eabf8
|
|
@ -3655,7 +3655,7 @@ class LocalDockerCloudRunner {
|
|||
fs_1.writeFileSync(entrypointFilePath, commands, {
|
||||
flag: 'w',
|
||||
});
|
||||
yield docker_1.default.run(image, Object.assign({ workspace, actionFolder }, this.buildParameters), false, `ls && cd ./.. && ls && ${entrypointFilePath}`, content, {
|
||||
yield docker_1.default.run(image, Object.assign({ workspace, actionFolder }, this.buildParameters), false, `"ls && ls ./.. && ${entrypointFilePath}"`, content, {
|
||||
listeners: {
|
||||
stdout: (data) => {
|
||||
myOutput += data.toString();
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -93,7 +93,7 @@ class LocalDockerCloudRunner implements ProviderInterface {
|
|||
image,
|
||||
{ workspace, actionFolder, ...this.buildParameters },
|
||||
false,
|
||||
`ls && cd ./.. && ls && ${entrypointFilePath}`,
|
||||
`"ls && ls ./.. && ${entrypointFilePath}"`,
|
||||
content,
|
||||
{
|
||||
listeners: {
|
||||
|
|
|
|||
Loading…
Reference in New Issue