Reduce checkout size of submodules (#2739)

This commit is contained in:
Matthew Leibowitz 2024-02-05 13:59:58 +02:00 коммит произвёл GitHub
Родитель 04ff977ac0
Коммит 54e8a3f3d5
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -19,7 +19,7 @@ void InitializeAngle(string branch, DirectoryPath ANGLE_PATH, DirectoryPath WINA
continue;
RunProcess("git", new ProcessSettings {
Arguments = $"submodule update --init --recursive {submodule}",
Arguments = $"submodule update --init --recursive --depth 1 --single-branch {submodule}",
WorkingDirectory = ANGLE_PATH.FullPath,
});
}

Просмотреть файл

@ -338,7 +338,7 @@ jobs:
inputs:
artifactName: ${{ parameters.artifactName }}
pathToPublish: 'output'
- ${{ if eq(variables['System.TeamProject'], 'devdiv') }}:
- ${{ if and(eq(variables['System.TeamProject'], 'devdiv'), ne(parameters.buildPipelineType, 'tests'), ne(variables['System.PullRequest.IsFork'], 'true'), or(and(eq(variables['Build.Reason'], 'Schedule'), or(eq(variables['Build.SourceBranch'], 'refs/heads/main'), startsWith(variables['Build.SourceBranch'], 'refs/heads/release/'))), parameters.runCompliance)) }}:
- task: ComponentGovernanceComponentDetection@0
displayName: Run component detection
condition: always()