Copy cloud runner cache into github workspace directory
parent
45d4191982
commit
8a6bf7d142
|
|
@ -3639,10 +3639,10 @@ class LocalDockerCloudRunner {
|
|||
apt-get update > /dev/null && apt-get install -y tree> /dev/null
|
||||
mkdir -p /github/workspace/cloud-runner-cache
|
||||
mkdir -p /data/cache
|
||||
cp -r /github/workspace/cloud-runner-cache/ /data/cache/
|
||||
cp -a /github/workspace/cloud-runner-cache/. /data/cache/
|
||||
tree -L 2 /data/cache
|
||||
${commands}
|
||||
cp -r /data/cache/ /github/workspace/cloud-runner-cache/
|
||||
cp -a /data/cache/. /github/workspace/cloud-runner-cache/
|
||||
tree -L 2 /github/workspace/cloud-runner-cache
|
||||
`, {
|
||||
flag: 'w',
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -95,10 +95,10 @@ class LocalDockerCloudRunner implements ProviderInterface {
|
|||
apt-get update > /dev/null && apt-get install -y tree> /dev/null
|
||||
mkdir -p /github/workspace/cloud-runner-cache
|
||||
mkdir -p /data/cache
|
||||
cp -r /github/workspace/cloud-runner-cache/ /data/cache/
|
||||
cp -a /github/workspace/cloud-runner-cache/. /data/cache/
|
||||
tree -L 2 /data/cache
|
||||
${commands}
|
||||
cp -r /data/cache/ /github/workspace/cloud-runner-cache/
|
||||
cp -a /data/cache/. /github/workspace/cloud-runner-cache/
|
||||
tree -L 2 /github/workspace/cloud-runner-cache
|
||||
`,
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue