fixes
parent
0dfbf442e7
commit
4664914de6
|
@ -302,8 +302,8 @@ class BuildParameters {
|
|||
asyncWorkflow: cloud_runner_options_1.default.asyncCloudRunner,
|
||||
githubCheckId: cloud_runner_options_1.default.githubCheckId,
|
||||
triggerWorkflowOnComplete: cloud_runner_options_1.default.triggerWorkflowOnComplete,
|
||||
cloudRunnerDebugSkipLFS: cloud_runner_options_1.default.cloudRunnerDebugSkipLFS,
|
||||
cloudRunnerDebugSkipCache: cloud_runner_options_1.default.cloudRunnerDebugSkipCache,
|
||||
skipLFS: cloud_runner_options_1.default.skipLFS,
|
||||
skipCache: cloud_runner_options_1.default.skipCache,
|
||||
cacheUnityInstallationOnMac: input_1.default.cacheUnityInstallationOnMac,
|
||||
unityHubVersionOnMac: input_1.default.unityHubVersionOnMac,
|
||||
};
|
||||
|
@ -868,11 +868,11 @@ class CloudRunnerOptions {
|
|||
static get cloudRunnerDebugEnv() {
|
||||
return CloudRunnerOptions.getInput(`cloudRunnerDebugEnv`) === `true` || false;
|
||||
}
|
||||
static get cloudRunnerDebugSkipLFS() {
|
||||
return CloudRunnerOptions.getInput(`cloudRunnerDebugSkipLFS`) === `true` || false;
|
||||
static get skipLFS() {
|
||||
return CloudRunnerOptions.getInput(`skipLFS`) === `true` || false;
|
||||
}
|
||||
static get cloudRunnerDebugSkipCache() {
|
||||
return CloudRunnerOptions.getInput(`cloudRunnerDebugSkipCache`) === `true` || false;
|
||||
static get skipCache() {
|
||||
return CloudRunnerOptions.getInput(`skipCache`) === `true` || false;
|
||||
}
|
||||
static get watchCloudRunnerToEnd() {
|
||||
if (CloudRunnerOptions.asyncCloudRunner) {
|
||||
|
@ -4068,8 +4068,8 @@ class Caching {
|
|||
process.chdir(`${startPath}`);
|
||||
}
|
||||
static async PullFromCache(cacheFolder, destinationFolder, cacheArtifactName = ``) {
|
||||
cloud_runner_logger_1.default.log(`Pulling from cache ${destinationFolder} ${cloud_runner_1.default.buildParameters.cloudRunnerDebugSkipCache}`);
|
||||
if (`${cloud_runner_1.default.buildParameters.cloudRunnerDebugSkipCache}` === `true`) {
|
||||
cloud_runner_logger_1.default.log(`Pulling from cache ${destinationFolder} ${cloud_runner_1.default.buildParameters.skipCache}`);
|
||||
if (`${cloud_runner_1.default.buildParameters.skipCache}` === `true`) {
|
||||
cloud_runner_logger_1.default.log(`Skipping cache debugSkipCache is true`);
|
||||
return;
|
||||
}
|
||||
|
@ -4279,7 +4279,7 @@ class RemoteClient {
|
|||
process.chdir(cloud_runner_folders_1.CloudRunnerFolders.repoPathAbsolute);
|
||||
await cloud_runner_system_1.CloudRunnerSystem.Run(`git config --global filter.lfs.smudge "git-lfs smudge -- %f"`);
|
||||
await cloud_runner_system_1.CloudRunnerSystem.Run(`git config --global filter.lfs.process "git-lfs filter-process"`);
|
||||
if (!cloud_runner_1.default.buildParameters.cloudRunnerDebugSkipLFS) {
|
||||
if (!cloud_runner_1.default.buildParameters.skipLFS) {
|
||||
await cloud_runner_system_1.CloudRunnerSystem.Run(`git lfs pull`);
|
||||
remote_client_logger_1.RemoteClientLogger.log(`pulled latest LFS files`);
|
||||
node_console_1.assert(node_fs_1.default.existsSync(cloud_runner_folders_1.CloudRunnerFolders.lfsFolderAbsolute));
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -79,8 +79,8 @@ class BuildParameters {
|
|||
public asyncWorkflow!: boolean;
|
||||
public githubCheckId!: string;
|
||||
public triggerWorkflowOnComplete!: string[];
|
||||
public cloudRunnerDebugSkipLFS!: boolean;
|
||||
public cloudRunnerDebugSkipCache!: boolean;
|
||||
public skipLFS!: boolean;
|
||||
public skipCache!: boolean;
|
||||
public cacheUnityInstallationOnMac!: boolean;
|
||||
public unityHubVersionOnMac!: string;
|
||||
|
||||
|
@ -183,8 +183,8 @@ class BuildParameters {
|
|||
asyncWorkflow: CloudRunnerOptions.asyncCloudRunner,
|
||||
githubCheckId: CloudRunnerOptions.githubCheckId,
|
||||
triggerWorkflowOnComplete: CloudRunnerOptions.triggerWorkflowOnComplete,
|
||||
cloudRunnerDebugSkipLFS: CloudRunnerOptions.cloudRunnerDebugSkipLFS,
|
||||
cloudRunnerDebugSkipCache: CloudRunnerOptions.cloudRunnerDebugSkipCache,
|
||||
skipLFS: CloudRunnerOptions.skipLFS,
|
||||
skipCache: CloudRunnerOptions.skipCache,
|
||||
cacheUnityInstallationOnMac: Input.cacheUnityInstallationOnMac,
|
||||
unityHubVersionOnMac: Input.unityHubVersionOnMac,
|
||||
};
|
||||
|
|
|
@ -250,11 +250,11 @@ class CloudRunnerOptions {
|
|||
static get cloudRunnerDebugEnv(): boolean {
|
||||
return CloudRunnerOptions.getInput(`cloudRunnerDebugEnv`) === `true` || false;
|
||||
}
|
||||
static get cloudRunnerDebugSkipLFS(): boolean {
|
||||
return CloudRunnerOptions.getInput(`cloudRunnerDebugSkipLFS`) === `true` || false;
|
||||
static get skipLFS(): boolean {
|
||||
return CloudRunnerOptions.getInput(`skipLFS`) === `true` || false;
|
||||
}
|
||||
static get cloudRunnerDebugSkipCache(): boolean {
|
||||
return CloudRunnerOptions.getInput(`cloudRunnerDebugSkipCache`) === `true` || false;
|
||||
static get skipCache(): boolean {
|
||||
return CloudRunnerOptions.getInput(`skipCache`) === `true` || false;
|
||||
}
|
||||
|
||||
static get watchCloudRunnerToEnd(): boolean {
|
||||
|
|
|
@ -98,10 +98,8 @@ export class Caching {
|
|||
process.chdir(`${startPath}`);
|
||||
}
|
||||
public static async PullFromCache(cacheFolder: string, destinationFolder: string, cacheArtifactName: string = ``) {
|
||||
CloudRunnerLogger.log(
|
||||
`Pulling from cache ${destinationFolder} ${CloudRunner.buildParameters.cloudRunnerDebugSkipCache}`,
|
||||
);
|
||||
if (`${CloudRunner.buildParameters.cloudRunnerDebugSkipCache}` === `true`) {
|
||||
CloudRunnerLogger.log(`Pulling from cache ${destinationFolder} ${CloudRunner.buildParameters.skipCache}`);
|
||||
if (`${CloudRunner.buildParameters.skipCache}` === `true`) {
|
||||
CloudRunnerLogger.log(`Skipping cache debugSkipCache is true`);
|
||||
|
||||
return;
|
||||
|
|
|
@ -145,7 +145,7 @@ export class RemoteClient {
|
|||
process.chdir(CloudRunnerFolders.repoPathAbsolute);
|
||||
await CloudRunnerSystem.Run(`git config --global filter.lfs.smudge "git-lfs smudge -- %f"`);
|
||||
await CloudRunnerSystem.Run(`git config --global filter.lfs.process "git-lfs filter-process"`);
|
||||
if (!CloudRunner.buildParameters.cloudRunnerDebugSkipLFS) {
|
||||
if (!CloudRunner.buildParameters.skipLFS) {
|
||||
await CloudRunnerSystem.Run(`git lfs pull`);
|
||||
RemoteClientLogger.log(`pulled latest LFS files`);
|
||||
assert(fs.existsSync(CloudRunnerFolders.lfsFolderAbsolute));
|
||||
|
|
Loading…
Reference in New Issue