Skip all locking actions test as we now have two useful test flows
parent
5207bf8ae4
commit
9253b5e21c
|
|
@ -3697,7 +3697,6 @@ const cloud_runner_logger_1 = __importDefault(__nccwpck_require__(22855));
|
||||||
const docker_1 = __importDefault(__nccwpck_require__(16934));
|
const docker_1 = __importDefault(__nccwpck_require__(16934));
|
||||||
const model_1 = __nccwpck_require__(41359);
|
const model_1 = __nccwpck_require__(41359);
|
||||||
const fs_1 = __nccwpck_require__(57147);
|
const fs_1 = __nccwpck_require__(57147);
|
||||||
const cloud_runner_folders_1 = __nccwpck_require__(13527);
|
|
||||||
// import * as core from '@actions/core';
|
// import * as core from '@actions/core';
|
||||||
class LocalDockerCloudRunner {
|
class LocalDockerCloudRunner {
|
||||||
inspect() {
|
inspect() {
|
||||||
|
|
@ -3765,11 +3764,11 @@ class LocalDockerCloudRunner {
|
||||||
mkdir -p /github/workspace/cloud-runner-cache
|
mkdir -p /github/workspace/cloud-runner-cache
|
||||||
mkdir -p /data/cache
|
mkdir -p /data/cache
|
||||||
cp -a /github/workspace/cloud-runner-cache/. /data/cache/
|
cp -a /github/workspace/cloud-runner-cache/. /data/cache/
|
||||||
tree -L 2 /data/cache
|
tree -L 3 /data/
|
||||||
tree -L 3 ${cloud_runner_folders_1.CloudRunnerFolders.ToLinuxFolder(cloud_runner_folders_1.CloudRunnerFolders.uniqueCloudRunnerJobFolderAbsolute)}
|
|
||||||
${commands}
|
${commands}
|
||||||
cp -a /data/cache/. /github/workspace/cloud-runner-cache/
|
cp -a /data/cache/. /github/workspace/cloud-runner-cache/
|
||||||
tree -L 2 /github/workspace/cloud-runner-cache
|
tree -L 2 /github/workspace/cloud-runner-cache
|
||||||
|
tree -L 3 /data/
|
||||||
`, {
|
`, {
|
||||||
flag: 'w',
|
flag: 'w',
|
||||||
});
|
});
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -6,7 +6,6 @@ import CloudRunnerSecret from '../../services/cloud-runner-secret';
|
||||||
import Docker from '../../../docker';
|
import Docker from '../../../docker';
|
||||||
import { Action } from '../../../../model';
|
import { Action } from '../../../../model';
|
||||||
import { writeFileSync } from 'fs';
|
import { writeFileSync } from 'fs';
|
||||||
import { CloudRunnerFolders } from '../../services/cloud-runner-folders';
|
|
||||||
|
|
||||||
// import * as core from '@actions/core';
|
// import * as core from '@actions/core';
|
||||||
|
|
||||||
|
|
@ -97,11 +96,11 @@ class LocalDockerCloudRunner implements ProviderInterface {
|
||||||
mkdir -p /github/workspace/cloud-runner-cache
|
mkdir -p /github/workspace/cloud-runner-cache
|
||||||
mkdir -p /data/cache
|
mkdir -p /data/cache
|
||||||
cp -a /github/workspace/cloud-runner-cache/. /data/cache/
|
cp -a /github/workspace/cloud-runner-cache/. /data/cache/
|
||||||
tree -L 2 /data/cache
|
tree -L 3 /data/
|
||||||
tree -L 3 ${CloudRunnerFolders.ToLinuxFolder(CloudRunnerFolders.uniqueCloudRunnerJobFolderAbsolute)}
|
|
||||||
${commands}
|
${commands}
|
||||||
cp -a /data/cache/. /github/workspace/cloud-runner-cache/
|
cp -a /data/cache/. /github/workspace/cloud-runner-cache/
|
||||||
tree -L 2 /github/workspace/cloud-runner-cache
|
tree -L 2 /github/workspace/cloud-runner-cache
|
||||||
|
tree -L 3 /data/
|
||||||
`,
|
`,
|
||||||
{
|
{
|
||||||
flag: 'w',
|
flag: 'w',
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue