File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
src/PostSharp.Engineering.BuildTools/Resources Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1717 [switch ]$StartVsmon , # Enable the remote debugger.
1818 [string ]$Script = ' Build.ps1' , # The build script to be executed inside Docker.
1919 [string ]$Isolation = ' process' , # Docker isolation mode (process or hyperv).
20- [string ]$Memory = ' 8g ' , # Docker memory limit.
20+ [string ]$Memory = ' 16g ' , # Docker memory limit.
2121 [int ]$Cpus = [Environment ]::ProcessorCount, # Docker CPU limit (defaults to host's CPU count).
2222 [Parameter (ValueFromRemainingArguments )]
2323 [string []]$BuildArgs # Arguments passed to `Build.ps1` within the container (or Claude prompt if -Claude is specified).
@@ -395,7 +395,7 @@ if (-not (Test-Path $dockerContextDirectory))
395395
396396# Prepare volume mappings (stored as mapping strings, "-v" flags added later)
397397$VolumeMappings = @ (" ${SourceDirName} :${SourceDirName} " )
398- $MountPoints = @ ($SourceDirName , " c:\packages " )
398+ $MountPoints = @ ($SourceDirName )
399399$GitDirectories = @ ($SourceDirName )
400400
401401# Define static Git system directory for mapping. This used by Teamcity as an LFS parent repo.
Original file line number Diff line number Diff line change 1717 [switch ]$StartVsmon , # Enable the remote debugger.
1818 [string ]$Script = ' Build.ps1' , # The build script to be executed inside Docker.
1919 [string ]$Isolation = ' process' , # Docker isolation mode (process or hyperv).
20- [string ]$Memory = ' 8g ' , # Docker memory limit.
20+ [string ]$Memory = ' 16g ' , # Docker memory limit.
2121 [int ]$Cpus = [Environment ]::ProcessorCount, # Docker CPU limit (defaults to host's CPU count).
2222 [Parameter (ValueFromRemainingArguments )]
2323 [string []]$BuildArgs # Arguments passed to `Build.ps1` within the container (or Claude prompt if -Claude is specified).
@@ -395,7 +395,7 @@ if (-not (Test-Path $dockerContextDirectory))
395395
396396# Prepare volume mappings (stored as mapping strings, "-v" flags added later)
397397$VolumeMappings = @ (" ${SourceDirName} :${SourceDirName} " )
398- $MountPoints = @ ($SourceDirName , " c:\packages " )
398+ $MountPoints = @ ($SourceDirName )
399399$GitDirectories = @ ($SourceDirName )
400400
401401# Define static Git system directory for mapping. This used by Teamcity as an LFS parent repo.
You can’t perform that action at this time.
0 commit comments