Skip to content
Draft
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Actions/RunPipeline/RunPipeline.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ try {
$imageName = $settings.cacheImageName
if ($imageName) {
Write-Host "::group::Flush ContainerHelper Cache"
Flush-ContainerHelperCache -cache 'all,exitedcontainers' -keepdays $settings.cacheKeepDays
Flush-ContainerHelperCache -cache 'all,exitedcontainers,ALGoContainersOnly' -keepdays $settings.cacheKeepDays
Write-Host "::endgroup::"
}
}
Expand Down Expand Up @@ -515,7 +515,8 @@ try {
-pageScriptingTestResultsFolder (Join-Path $buildArtifactFolder 'PageScriptingTestResultDetails') `
-CreateRuntimePackages:$CreateRuntimePackages `
-appBuild $appBuild -appRevision $appRevision `
-uninstallRemovedApps
-uninstallRemovedApps `
-NewBcContainer { Param([Hashtable]$parameters) $parameters.additionalParameters += @("--label creator=AL-Go"); New-BcContainer @parameters; Invoke-ScriptInBcContainer $parameters.ContainerName -scriptblock { $progressPreference = 'SilentlyContinue' } }

if ($containerBaseFolder) {
Write-Host "Copy artifacts and build output back from build container"
Expand Down
Loading