Merged PR 631840: Get rid of warning for .cloudbuild config files not under a mount

This should eliminate this warning in our various validation builds

`The file 'd:\dbs\el\bxlint\.CloudBuild\DominoDropConfig.json' is being used as a source file, but is not under a defined mountpoint. This file is thus 'untracked', and changes to it will not impact incremental builds`
This commit is contained in:
Michael Pysson 🍕 2021-10-06 03:03:52 +00:00
Родитель aec50e0492
Коммит c18e2e33a1
1 изменённых файлов: 11 добавлений и 0 удалений

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

@ -652,6 +652,17 @@ config({
isWritable: false,
isReadable: true
},
...(Environment.getStringValue("BUILDXL_DROP_CONFIG") !== undefined ?
[
{
// Path used in CloudBuild for things like drop configuration files. These files should not be tracked.
name: a`CloudBuild`,
path: Environment.getPathValue("BUILDXL_DROP_CONFIG").parent,
trackSourceFileChanges: false,
isWritable: false,
isReadable: true
}
] : []),
{
name: a`ThirdParty_mono`,
path: p`third_party/mono@abad3612068e7333956106e7be02d9ce9e346f92`,