cache test should explicitly check cache key from build 1 is included in results log

pull/461/head
Frostebite 2022-09-22 22:48:23 +01:00
parent 5a5658f587
commit 870b6eabf8
3 changed files with 3 additions and 3 deletions

2
dist/index.js vendored
View File

@ -3655,7 +3655,7 @@ class LocalDockerCloudRunner {
fs_1.writeFileSync(entrypointFilePath, commands, { fs_1.writeFileSync(entrypointFilePath, commands, {
flag: 'w', 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: { listeners: {
stdout: (data) => { stdout: (data) => {
myOutput += data.toString(); myOutput += data.toString();

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -93,7 +93,7 @@ class LocalDockerCloudRunner implements ProviderInterface {
image, image,
{ workspace, actionFolder, ...this.buildParameters }, { workspace, actionFolder, ...this.buildParameters },
false, false,
`ls && cd ./.. && ls && ${entrypointFilePath}`, `"ls && ls ./.. && ${entrypointFilePath}"`,
content, content,
{ {
listeners: { listeners: {