AppHandling/Run-AlPipeline.ps1
<#
.Synopsis Run AL Pipeline .Description Run AL Pipeline .Parameter pipelineName The name of the pipeline or project. .Parameter baseFolder The baseFolder serves as the base Folder for all other parameters including a path (appFolders, testFolders, testResultFile, outputFolder, packagesFolder and buildArtifactsFodler). This folder will be shared with the container as c:\sources .Parameter sharedFolder If a folder on the host computer is specified in the sharedFolder parameter, it will be shared with the container as c:\shared .Parameter licenseFile License file to use for AL Pipeline. .Parameter accept_insiderEula Switch, which you need to specify if you are going to create a container with an insider build of Business Central on Docker containers (See https://go.microsoft.com/fwlink/?linkid=2245051) .Parameter containerName This is the containerName going to be used for the build/test container. If not specified, the container name will be the pipeline name followed by -bld. .Parameter generateErrorLog Switch parameter on whether to generate an alerts log file. Default is false. If set to true, the `errorLog` argument is used when compiling the apps. The generated file will be named <appname>.errorLog.json and is placed in the same folder as the app file. .Parameter imageName If imageName is specified it will be used to build an image, which serves as a cache for faster container generation. Only speficy imagename if you are going to create multiple containers from the same artifacts. .Parameter enableTaskScheduler Include this switch if the Task Scheduler should be running inside the build/test container, as some app features rely on the Task Scheduler. .Parameter assignPremiumPlan Include this switch if the primary user in Business Central should have assign premium plan, as some app features require premium plan. .Parameter tenant If you specify a tenant name, a tenant with this name will be created and used for the entire process. .Parameter memoryLimit MemoryLimit is default set to 8Gb. This is fine for compiling small and medium size apps, but if your have a number of apps or your apps are large and complex, you might need to assign more memory. .Parameter auth Set auth to Windows, NavUserPassword or AAD depending on which authentication mechanism your container should use .Parameter credential These are the credentials used for the container. If not provided, the Run-AlPipeline function will generate a random password and use that. .Parameter companyName company to use for test execution (blank for default) .Parameter codeSignCertPfxFile A secure url to a code signing certificate for signing apps. Apps will only be signed if useDevEndpoint is NOT specified. .Parameter codeSignCertPfxPassword Password for the code signing certificate specified by codeSignCertPfxFile. Apps will only be signed if useDevEndpoint is NOT specified. .Parameter keyVaultCertPfxFile A secure url to a certificate for keyVault accessing from the container. This will be used in a call to Set-BcContainerKeyVaultAadAppAndCertificate after the container is created. .Parameter keyVaultCertPfxPassword Password for the keyVault certificate specified by keyVaultCertPfxFile. This will be used in a call to Set-BcContainerKeyVaultAadAppAndCertificate after the container is created. .Parameter keyVaultClientId ClientId for the keyVault certificate specified by keyVaultCertPfxFile. This will be used in a call to Set-BcContainerKeyVaultAadAppAndCertificate after the container is created. .Parameter installApps Array or comma separated list of 3rd party apps to install before compiling apps. .Parameter installTestApps Array or comma separated list of 3rd party test apps to install before compiling test apps. .Parameter installOnlyReferencedApps Switch indicating whether you want to only install referenced apps in InstallApps and InstallTestApps .Parameter generateDependencyArtifact Switch indicating whether you want to generate a folder with all installed dependency apps used during build .Parameter previousApps Array or comma separated list of previous version of apps .Parameter appFolders Array or comma separated list of folders with apps to be compiled, signed and published .Parameter testFolders Array or comma separated list of folders with test apps to be compiled, published and run .Parameter additionalCountries Array or comma separated list of countries to test .Parameter appVersion Major and Minor version for build (ex. "18.0"). Will be stamped into the build part of the app.json version number property. .Parameter appBuild Build number for build. Will be stamped into the build part of the app.json version number property. .Parameter appRevision Revision number for build. Will be stamped into the revision part of the app.json version number property. .Parameter applicationInsightsKey ApplicationInsightsKey to be stamped into app.json for all apps .Parameter applicationInsightsConnectionString ApplicationInsightsConnectionString to be stamped into app.json for all apps .Parameter buildOutputFile Filename in which you want the build output to be written. Default is none, meaning that build output will not be written to a file, but only on screen. .Parameter containerEventLogFile Filename in which you want the build output to be written. Default is none, meaning that build output will not be written to a file, but only on screen. .Parameter testResultsFile Filename in which you want the test results to be written. Default is TestResults.xml, meaning that test results will be written to this filename in the base folder. This parameter is ignored if doNotRunTests is included. .Parameter bcptTestResultsFile Filename in which you want the bcpt test results to be written. Default is TestResults.xml, meaning that test results will be written to this filename in the base folder. This parameter is ignored if doNotRunTests is included. .Parameter testResultsFormat Format of test results file. Possible values are XUnit or JUnit. Both formats are XML based test result formats. .Parameter packagesFolder This is the folder (relative to base folder) where symbols are downloaded and compiled apps are placed. Only relevant when not using useDevEndpoint .Parameter outputFolder This is the folder (relative to base folder) where compiled apps are placed. Only relevant when not using useDevEndpoint. .Parameter artifact The description of which artifact to use. This can either be a URL (from Get-BcArtifactUrl) or in the format storageAccount/type/version/country/select/sastoken, where these values are transferred as parameters to Get-BcArtifactUrl. Default value is ///us/current. If you specify accept_insiderEula, you do not need to specify a sasToken .Parameter useGenericImage Specify a private (or special) generic image to use for the Container OS. Default is calling Get-BestGenericImageName. .Parameter buildArtifactFolder If this folder is specified, the build artifacts will be copied to this folder. .Parameter createRuntimePackages Include this switch if you want to create runtime packages of all apps. The runtime packages will also be signed (if certificate is provided) and copied to artifacts folder. .Parameter installTestRunner Include this switch to include the test runner in the container before compiling apps and test apps. The Test Runner includes the following apps: Microsoft Test Runner. .Parameter installTestFramework Include this switch to include the test framework in the container before compiling apps and test apps. The Test Framework includes the following apps: Microsoft Any, Microsoft Library Assert, Microsoft Library Variable Storage and Microsoft Test Runner. .Parameter installTestLibraries Include this switch to include the test libraries in the container before compiling apps and test apps. The Test Libraries includes all the Test Framework apps and the following apps: Microsoft System Application Test Library and Microsoft Tests-TestLibraries .Parameter installPerformanceToolkit Include this switch to install test Performance Test Toolkit. This includes the apps from the Test Framework and the Microsoft Business Central Performance Toolkit app .Parameter azureDevOps Include this switch if you want compile errors and test errors to surface directly in Azure Devops pipeline. .Parameter gitLab Include this switch if you want compile errors and test errors to surface directly in GitLab. .Parameter gitHubActions Include this switch if you want compile errors and test errors to surface directly in GitHubActions. .Parameter Failon Specify if you want Compilation to fail on Error or Warning .Parameter TreatTestFailuresAsWarnings Include this switch if you want to treat test failures as warnings instead of errors .Parameter useDevEndpoint Including the useDevEndpoint switch will cause the pipeline to publish apps through the development endpoint (like VS Code). This should ONLY be used when running the pipeline locally and will cause some changes in how things are done. .Parameter doNotBuildTests Include this switch to indicate that you do not want to build nor tests. .Parameter doNotRunTests Include this switch to indicate that you do not want to execute tests. Test Apps will still be published and installed, test execution can later be performed from the UI. .Parameter doNotRunBcptTests Include this switch to indicate that you do not want to execute bcpt tests. Test Apps will still be published and installed, test execution can later be performed from the UI. .Parameter doNotPerformUpgrade Include this switch to indicate that you do not want to perform the upgrade. This means that the previousApps are never actually published to the container. .Parameter doNotPublishApps Include this switch to indicate that you do not want to publish the app. Including this switch will also mean that upgrade won't happen and tests won't run. .Parameter uninstallRemovedApps Include this switch to indicate that you want to uninstall apps, which are included in previousApps, but not included (upgraded) in apps, i.e. removed apps .Parameter useCompilerFolder Include this switch to indicate that you want to use the compiler folder instead of creating a docker container for app compilation. .Parameter reUseContainer Including the reUseContainer switch causes pipeline to reuse the container with the given name if it exists .Parameter keepContainer Including the keepContainer switch causes the container to not be deleted after the pipeline finishes. .Parameter updateLaunchJson Specifies the name of the configuration in launch.json, which should be updated with container information to be able to start debugging right away. .Parameter artifactCachePath Artifacts Cache folder (if needed) .Parameter vsixFile Specify a URL or path to a .vsix file in order to override the .vsix file in the image with this. Use Get-LatestAlLanguageExtensionUrl to get latest AL Language extension from Marketplace. Use Get-AlLanguageExtensionFromArtifacts -artifactUrl (Get-BCArtifactUrl -select NextMajor -accept_insiderEula) to get latest insider .vsix .Parameter enableCodeCop Include this switch to include Code Cop Rules during compilation. .Parameter enableAppSourceCop Only relevant for AppSource apps. Include this switch to include AppSource Cop during compilation. .Parameter enableUICop Include this switch to include UI Cop during compilation. .Parameter enablePerTenantExtensionCop Only relevant for Per Tenant Extensions. Include this switch to include Per Tenant Extension Cop during compilation. .Parameter customCodeCops Use custom AL Cops into the container and include them, in addidtion to the default cops, during compilation. .Parameter useDefaultAppSourceRuleSet Apply the default ruleset for passing AppSource validation .Parameter rulesetFile Filename of the custom ruleset file .Parameter enableExternalRulesets Include this switch to enable external rulesets when compiling .Parameter preProcessorSymbols PreProcessorSymbols to set when compiling the app. .Parameter generatecrossreferences Include this flag to generate cross references when compiling .Parameter bcAuthContext Authorization Context created by New-BcAuthContext. By specifying BcAuthContext and environment, the pipeline will run using the online Business Central Environment as target .Parameter environment Environment to use for the pipeline .Parameter escapeFromCops If One of the cops causes an error in an app, then show the error, recompile the app without cops and continue .Parameter AppSourceCopMandatoryAffixes Only relevant for AppSource Apps when AppSourceCop is enabled. This needs to be an array (or a string with comma separated list) of affixes used in the app. .Parameter AppSourceCopSupportedCountries Only relevant for AppSource Apps when AppSourceCop is enabled. This needs to be an array (or a string with a comma seperated list) of supported countries for this app. .Parameter obsoleteTagMinAllowedMajorMinor Only relevant for AppSource Apps. Objects that are pending obsoletion with an obsolete tag version lower than the minimum set in the AppSourceCop.json file are not allowed. (AS0105) .Parameter features Features to set when compiling the app. .Parameter SourceRepositoryUrl Repository holding the source code for the app. Will be stamped into the app manifest. .Parameter SourceCommit The commit identifier for the source code for the app. Will be stamped into the app manifest. .Parameter BuildBy Information about which product built the app. Will be stamped into the app manifest. .Parameter BuildUrl The URL for the build job, which built the app. Will be stamped into the app manifest. .Parameter DockerPull Override function parameter for docker pull .Parameter NewBcContainer Override function parameter for New-BcContainer .Parameter SetBcContainerKeyVaultAadAppAndCertificate Override function parameter for Set-BcContainerKeyVaultAadAppAndCertificate .Parameter ImportTestToolkitToBcContainer Override function parameter for Import-TestToolkitToBcContainer .Parameter CompileAppInBcContainer Override function parameter for Compile-AppInBcContainer .Parameter PreCompileApp Custom script to run before compiling an app. The script should accept the type of the app and a reference to the compilation parameters. Possible values for $appType are: app, testApp, bcptApp Example: { param( [string] $appType, [ref] $compilationParams ) ... # Change the output folder based on the app type switch($appType) { "app" { $compilationParams.Value.appOutputFolder = "MyApps" } "testApp" { $compilationParams.Value.appOutputFolder = "MyTestApps" } "bcptApp" { $compilationParams.Value.appOutputFolder = "MyBcptApps" } } ... } .Parameter PostCompileApp Custom script to run after compiling an app. The script should accept the file path of the produced .app file, the type of the app, and a hashtable of the compilation parameters. Possible values for $appType are: app, testApp, bcptApp Example: { param( [string] $appFilePath, [string] $appType, [hashtable] $compilationParams ) ... } .Parameter GetBcContainerAppInfo Override function parameter for Get-BcContainerAppInfo .Parameter PublishBcContainerApp Override function parameter for Publish-BcContainerApp .Parameter UnPublishBcContainerApp Override function parameter for UnPublish-BcContainerApp .Parameter InstallBcAppFromAppSource Override function parameter for Install-BcAppFromAppSource .Parameter SignBcContainerApp Override function parameter for Sign-BcContainerApp .Parameter RunTestsInBcContainer Override function parameter for Run-TestsInBcContainer .Parameter RunBCPTTestsInBcContainer Override function parameter for Run-BCPTTestsInBcContainer .Parameter GetBcContainerAppRuntimePackage Override function parameter Get-BcContainerAppRuntimePackage .Parameter RemoveBcContainer Override function parameter for Remove-BcContainer .Parameter GetBestGenericImageName Override function parameter for Get-BestGenericImageName .Parameter GetBcContainerEventLog Override function parameter for Get-BcContainerEventLog .Parameter InstallMissingDependencies Override function parameter for Installing missing dependencies .Example Please visit https://www.freddysblog.com for descriptions .Example Please visit https://dev.azure.com/businesscentralapps/HelloWorld for Per Tenant Extension example .Example Please visit https://dev.azure.com/businesscentralapps/HelloWorld.AppSource for AppSource example #> function Run-AlPipeline { Param( [string] $pipelineName, [string] $baseFolder = "", [string] $sharedFolder = "", [string] $licenseFile, [switch] $accept_insiderEula, [string] $containerName = "$($pipelineName.Replace('.','-') -replace '[^a-zA-Z0-9---]', '')-bld".ToLowerInvariant(), [string] $imageName = 'my', [switch] $enableTaskScheduler, [switch] $assignPremiumPlan, [string] $tenant = "default", [string] $memoryLimit, [string] $auth = 'UserPassword', [PSCredential] $credential, [string] $companyName = "", [string] $codeSignCertPfxFile = "", [SecureString] $codeSignCertPfxPassword = $null, [switch] $codeSignCertIsSelfSigned, [string] $keyVaultCertPfxFile = "", [SecureString] $keyVaultCertPfxPassword = $null, [string] $keyVaultClientId = "", $installApps = @(), $installTestApps = @(), [switch] $installOnlyReferencedApps, [switch] $generateDependencyArtifact, $previousApps = @(), $appFolders = @("app", "application"), $testFolders = @("test", "testapp"), $bcptTestFolders = @("bcpttest", "bcpttestapp"), $bcptTestSuites = @(), $additionalCountries = @(), [string] $appVersion = "", [int] $appBuild = 0, [int] $appRevision = 0, [string] $applicationInsightsKey, [string] $applicationInsightsConnectionString, [string] $buildOutputFile = "", [string] $containerEventLogFile = "", [string] $testResultsFile = "TestResults.xml", [string] $bcptTestResultsFile = "bcptTestResults.json", [Parameter(Mandatory=$false)] [ValidateSet('XUnit','JUnit')] [string] $testResultsFormat = "JUnit", [string] $packagesFolder = ".packages", [string] $outputFolder = ".output", [string] $artifact = "///us/Current", [string] $useGenericImage = "", [string] $buildArtifactFolder = "", [switch] $createRuntimePackages, [switch] $installTestRunner, [switch] $installTestFramework, [switch] $installTestLibraries, [switch] $installPerformanceToolkit, [switch] $CopySymbolsFromContainer, [switch] $UpdateDependencies, [switch] $azureDevOps, [switch] $gitLab, [switch] $gitHubActions, [ValidateSet('none','error','warning')] [string] $failOn = "none", [switch] $treatTestFailuresAsWarnings, [switch] $useDevEndpoint, [switch] $doNotBuildTests, [switch] $doNotRunTests, [switch] $doNotRunBcptTests, [switch] $doNotPerformUpgrade, [switch] $doNotPublishApps, [switch] $uninstallRemovedApps, [switch] $useCompilerFolder = $bcContainerHelperConfig.useCompilerFolder, [switch] $reUseContainer, [switch] $keepContainer, [string] $updateLaunchJson = "", [string] $artifactCachePath = "", [string] $vsixFile = "", [switch] $enableCodeCop, [switch] $enableAppSourceCop, [switch] $enableUICop, [switch] $enablePerTenantExtensionCop, $customCodeCops = @(), [switch] $useDefaultAppSourceRuleSet, [string] $rulesetFile = "", [switch] $generateErrorLog, [switch] $enableExternalRulesets, [string[]] $preProcessorSymbols = @(), [switch] $generatecrossreferences, [switch] $escapeFromCops, [Hashtable] $bcAuthContext, [string] $environment, $AppSourceCopMandatoryAffixes = @(), $AppSourceCopSupportedCountries = @(), [string] $obsoleteTagMinAllowedMajorMinor = "", [string[]] $features = @(), [string] $sourceRepositoryUrl = '', [string] $sourceCommit = '', [string] $buildBy = "BcContainerHelper,$BcContainerHelperVersion", [string] $buildUrl = '', [scriptblock] $DockerPull, [scriptblock] $NewBcContainer, [scriptblock] $SetBcContainerKeyVaultAadAppAndCertificate, [scriptblock] $ImportTestToolkitToBcContainer, [scriptblock] $CompileAppInBcContainer, [scriptblock] $PreCompileApp, [scriptblock] $PostCompileApp, [scriptblock] $GetBcContainerAppInfo, [scriptblock] $PublishBcContainerApp, [scriptblock] $UnPublishBcContainerApp, [scriptblock] $InstallBcAppFromAppSource, [scriptblock] $SignBcContainerApp, [scriptblock] $ImportTestDataInBcContainer, [scriptblock] $RunTestsInBcContainer, [scriptblock] $RunBCPTTestsInBcContainer, [scriptblock] $GetBcContainerAppRuntimePackage, [scriptblock] $RemoveBcContainer, [scriptblock] $GetBestGenericImageName, [scriptblock] $GetBcContainerEventLog, [scriptblock] $InstallMissingDependencies ) function CheckRelativePath([string] $baseFolder, [string] $sharedFolder, $path, $name) { if ($path) { if (-not [System.IO.Path]::IsPathRooted($path)) { if (Test-Path -path (Join-Path $baseFolder $path)) { $path = Join-Path $baseFolder $path -Resolve } else { $path = Join-Path $baseFolder $path } } else { if (!(($path -like "$($baseFolder)*") -or (($sharedFolder) -and ($path -like "$($sharedFolder)*")))) { if ($sharedFolder) { throw "$name is ($path) must be a subfolder to baseFolder ($baseFolder) or sharedFolder ($sharedFolder)" } else { throw "$name is ($path) must be a subfolder to baseFolder ($baseFolder)" } } } } $path } Function UpdateLaunchJson { Param( [string] $launchJsonFile, [System.Collections.Specialized.OrderedDictionary] $launchSettings ) if (Test-Path $launchJsonFile) { Write-Host "Modifying $launchJsonFile" $launchJson = [System.IO.File]::ReadAllLines($LaunchJsonFile) | ConvertFrom-Json } else { Write-Host "Creating $launchJsonFile" $dir = [System.IO.Path]::GetDirectoryName($launchJsonFile) if (!(Test-Path $dir)) { New-Item -Path $dir -ItemType Directory | Out-Null } $launchJson = @{ "version" = "0.2.0"; "configurations" = @() } | ConvertTo-Json | ConvertFrom-Json } $launchSettings | ConvertTo-Json | Out-Host $oldSettings = $launchJson.configurations | Where-Object { $_.name -eq $launchsettings.name } if ($oldSettings) { $oldSettings.PSObject.Properties | ForEach-Object { $prop = $_.Name if (!($launchSettings.Keys | Where-Object { $_ -eq $prop } )) { $launchSettings += @{ "$prop" = $oldSettings."$prop" } } } } $launchJson.configurations = @($launchJson.configurations | Where-Object { $_.name -ne $launchsettings.name }) $launchJson.configurations += $launchSettings $launchJson | ConvertTo-Json -Depth 10 | Set-Content $launchJsonFile } function GetInstalledAppIds { Param( [bool] $useCompilerFolder, [string] $packagesFolder, [string] $compilerFolder, [bool] $filesOnly, [hashtable] $Parameters ) if ($useCompilerFolder) { $existingAppFiles = @(Get-ChildItem -Path (Join-Path $packagesFolder '*.app') | Select-Object -ExpandProperty FullName) $installedApps = @(GetAppInfo -AppFiles $existingAppFiles -compilerFolder $compilerFolder -cacheAppinfoPath (Join-Path $packagesFolder 'cache_AppInfo.json')) $compilerFolderAppFiles = @(Get-ChildItem -Path (Join-Path $compilerFolder 'symbols/*.app') | Select-Object -ExpandProperty FullName) $installedApps += @(GetAppInfo -AppFiles $compilerFolderAppFiles -compilerFolder $compilerFolder -cacheAppinfoPath (Join-Path $compilerFolder 'symbols/cache_AppInfo.json')) } elseif (!$filesOnly) { $installedApps = @(Invoke-Command -ScriptBlock $GetBcContainerAppInfo -ArgumentList $Parameters) } else { $installedApps = @() } Write-Host "::group::Installed Apps" $installedApps | ForEach-Object { Write-Host "- $($_.AppId):$($_.Name)" } Write-Host "::endgroup::" return $installedApps.AppId } $telemetryScope = InitTelemetryScope -name $MyInvocation.InvocationName -parameterValues $PSBoundParameters -includeParameters @() try { $warningsToShow = @() if (!$baseFolder -or !(Test-Path $baseFolder -PathType Container)) { throw "baseFolder must be an existing folder" } if ($sharedFolder -and !(Test-Path $sharedFolder -PathType Container)) { throw "If sharedFolder is specified, it must be an existing folder" } if ($memoryLimit -eq "") { $memoryLimit = "8G" } if ($installApps -is [String]) { $installApps = @($installApps.Split(',').Trim() | Where-Object { $_ }) } if ($installTestApps -is [String]) { $installTestApps = @($installTestApps.Split(',').Trim() | Where-Object { $_ }) } if ($previousApps -is [String]) { $previousApps = @($previousApps.Split(',').Trim() | Where-Object { $_ }) } if ($appFolders -is [String]) { $appFolders = @($appFolders.Split(',').Trim() | Where-Object { $_ }) } if ($testFolders -is [String]) { $testFolders = @($testFolders.Split(',').Trim() | Where-Object { $_ }) } if ($bcptTestFolders -is [String]) { $bcptTestFolders = @($bcptTestFolders.Split(',').Trim() | Where-Object { $_ }) } if ($additionalCountries -is [String]) { $additionalCountries = @($additionalCountries.Split(',').Trim() | Where-Object { $_ }) } if ($AppSourceCopMandatoryAffixes -is [String]) { $AppSourceCopMandatoryAffixes = @($AppSourceCopMandatoryAffixes.Split(',').Trim() | Where-Object { $_ }) } if ($AppSourceCopSupportedCountries -is [String]) { $AppSourceCopSupportedCountries = @($AppSourceCopSupportedCountries.Split(',').Trim() | Where-Object { $_ }) } if ($customCodeCops -is [String]) { $customCodeCops = @($customCodeCops.Split(',').Trim() | Where-Object { $_ }) } $appFolders = @($appFolders | ForEach-Object { CheckRelativePath -baseFolder $baseFolder -sharedFolder $sharedFolder -path $_ -name "appFolders" } | Where-Object { Test-Path $_ } ) $testFolders = @($testFolders | ForEach-Object { CheckRelativePath -baseFolder $baseFolder -sharedFolder $sharedFolder -path $_ -name "testFolders" } | Where-Object { Test-Path $_ } ) $bcptTestFolders = @($bcptTestFolders | ForEach-Object { CheckRelativePath -baseFolder $baseFolder -sharedFolder $sharedFolder -path $_ -name "bcptTestFolders" } | Where-Object { Test-Path $_ } ) $customCodeCops = @($customCodeCops | ForEach-Object { CheckRelativePath -baseFolder $baseFolder -sharedFolder $sharedFolder -path $_ -name "customCodeCops" } | Where-Object { Test-Path $_ } ) $buildOutputFile = CheckRelativePath -baseFolder $baseFolder -sharedFolder $sharedFolder -path $buildOutputFile -name "buildOutputFile" $containerEventLogFile = CheckRelativePath -baseFolder $baseFolder -sharedFolder $sharedFolder -path $containerEventLogFile -name "containerEventLogFile" $testResultsFile = CheckRelativePath -baseFolder $baseFolder -sharedFolder $sharedFolder -path $testResultsFile -name "testResultsFile" $bcptTestResultsFile = CheckRelativePath -baseFolder $baseFolder -sharedFolder $sharedFolder -path $bcptTestResultsFile -name "bcptTestResultsFile" $rulesetFile = CheckRelativePath -baseFolder $baseFolder -sharedFolder $sharedFolder -path $rulesetFile -name "rulesetFile" $containerEventLogFile,$buildOutputFile,$testResultsFile,$bcptTestResultsFile | ForEach-Object { if ($_ -and (Test-Path $_)) { Remove-Item -Path $_ -Force } } $addBcptTestSuites = $true if ($bcptTestSuites) { $addBcptTestSuites = $false } if ($bcptTestFolders) { $bcptTestFolders | ForEach-Object { if (-not (Test-Path (Join-Path $_ "bcptSuite.json"))) { throw "no bcptsuite.json found in bcpt test folder $_" } if ($addBcptTestSuites) { $bcptTestSuites += @((Join-Path $_ "bcptSuite.json")) } } } $artifactUrl = "" $filesOnly = $false if ($bcAuthContext) { if ("$environment" -eq "") { throw "When specifying bcAuthContext, you also have to specify the name of the pre-setup online environment to use." } if ($additionalCountries) { throw "You cannot specify additional countries when using an online environment." } if ($uninstallRemovedApps) { Write-Host -ForegroundColor Yellow "Uninstalling removed apps from online environments are not supported" $uninstallRemovedApps = $false } $bcAuthContext = Renew-BcAuthContext -bcAuthContext $bcAuthContext $bcEnvironment = Get-BcEnvironments -bcAuthContext $bcAuthContext | Where-Object { $_.name -eq $environment -and $_.type -eq "Sandbox" } if (!($bcEnvironment)) { throw "Environment $environment doesn't exist in the current context or it is not a Sandbox environment." } $bcBaseApp = Get-BcPublishedApps -bcAuthContext $bcauthcontext -environment $environment | Where-Object { $_.Name -eq "Base Application" -and $_.state -eq "installed" } $artifactUrl = Get-BCArtifactUrl -type Sandbox -country $bcEnvironment.countryCode -version $bcBaseApp.Version -select Closest $filesOnly = $true } if ($updateLaunchJson) { if (!$useDevEndpoint) { throw "UpdateLaunchJson cannot be specified if not using DevEndpoint" } } if ($useCompilerFolder -or $filesOnly -or !$useDevEndpoint) { $packagesFolder = CheckRelativePath -baseFolder $baseFolder -sharedFolder $sharedFolder -path $packagesFolder -name "packagesFolder" if (Test-Path $packagesFolder) { Remove-Item $packagesFolder -Recurse -Force } New-Item $packagesFolder -ItemType Directory | Out-Null } if ($useDevEndpoint) { $outputFolder = "" } else { $outputFolder = CheckRelativePath -baseFolder $baseFolder -sharedFolder $sharedFolder -path $outputFolder -name "outputFolder" if (Test-Path $outputFolder) { Remove-Item $outputFolder -Recurse -Force } } if ($buildArtifactFolder) { if (!(Test-Path $buildArtifactFolder)) { New-Item $buildArtifactFolder -ItemType Directory | Out-Null } } if (!($appFolders)) { Write-Host "WARNING: No app folders found" } if ($useDevEndpoint) { $additionalCountries = @() } if ("$artifact" -eq "" -or "$artifactUrl" -ne "") { # Do nothing } elseif ($artifact -like "https://*") { $artifactUrl = $artifact } else { $segments = "$artifact/////".Split('/') $storageAccount = $segments[0]; $type = $segments[1]; if ($type -eq "") { $type = 'Sandbox' } $version = $segments[2] $country = $segments[3]; if ($country -eq "") { $country = "us" } $select = $segments[4]; if ($select -eq "") { $select = "latest" } $sasToken = $segments[5] Write-Host "Determining artifacts to use" $minsto = $storageAccount $minsel = $select $mintok = $sasToken if ($additionalCountries) { $minver = $null @($country)+$additionalCountries | ForEach-Object { $url = Get-BCArtifactUrl -storageAccount $storageAccount -type $type -version $version -country $_.Trim() -select $select -sasToken $sasToken -accept_insiderEula:$accept_insiderEula | Select-Object -First 1 Write-Host "Found $($url.Split('?')[0])" if ($url) { $ver = [Version]$url.Split('/')[4] if ($minver -eq $null -or $ver -lt $minver) { $minver = $ver $minsto = $url.Split('/')[2].Split('.')[0] $minsel = "Latest" $mintok = $url.Split('?')[1]; if ($mintok) { $mintok = "?$mintok" } } } } if ($minver -eq $null) { throw "Unable to locate artifacts" } $version = $minver.ToString() } $artifactUrl = Get-BCArtifactUrl -storageAccount $minsto -type $type -version $version -country $country -select $minsel -sasToken $mintok -accept_insiderEula:$accept_insiderEula | Select-Object -First 1 if (!($artifactUrl)) { throw "Unable to locate artifacts" } } $escapeFromCops = $escapeFromCops -and ($enableCodeCop -or $enableAppSourceCop -or $enableUICop -or $enablePerTenantExtensionCop) if ($gitHubActions) { Write-Host "::group::Parameters" } Write-Host -ForegroundColor Yellow @' _____ _ | __ \ | | | |__) |_ _ _ __ __ _ _ __ ___ ___| |_ ___ _ __ ___ | ___/ _` | '__/ _` | '_ ` _ \ / _ \ __/ _ \ '__/ __| | | | (_| | | | (_| | | | | | | __/ |_ __/ | \__ \ |_| \__,_|_| \__,_|_| |_| |_|\___|\__\___|_| |___/ '@ Write-Host -NoNewLine -ForegroundColor Yellow "Pipeline name "; Write-Host $pipelineName Write-Host -NoNewLine -ForegroundColor Yellow "Container name "; Write-Host $containerName Write-Host -NoNewLine -ForegroundColor Yellow "Image name "; Write-Host $imageName Write-Host -NoNewLine -ForegroundColor Yellow "ArtifactUrl "; Write-Host $artifactUrl.Split('?')[0] Write-Host -NoNewLine -ForegroundColor Yellow "SasToken "; if ($artifactUrl.Contains('?')) { Write-Host "Specified" } else { Write-Host "Not Specified" } Write-Host -NoNewLine -ForegroundColor Yellow "BcAuthContext "; if ($bcauthcontext) { Write-Host "Specified" } else { Write-Host "Not Specified" } Write-Host -NoNewLine -ForegroundColor Yellow "Environment "; Write-Host $environment Write-Host -NoNewLine -ForegroundColor Yellow "ReUseContainer "; Write-Host $reUseContainer Write-Host -NoNewLine -ForegroundColor Yellow "KeepContainer "; Write-Host $keepContainer Write-Host -NoNewLine -ForegroundColor Yellow "useCompilerFolder "; Write-Host $useCompilerFolder Write-Host -NoNewLine -ForegroundColor Yellow "artifactCachePath "; Write-Host $artifactCachePath Write-Host -NoNewLine -ForegroundColor Yellow "useDevEndpoint "; Write-Host $useDevEndpoint Write-Host -NoNewLine -ForegroundColor Yellow "Auth "; Write-Host $auth Write-Host -NoNewLine -ForegroundColor Yellow "Credential "; if ($credential) { Write-Host "Specified" } else { $password = GetRandomPassword Write-Host "admin/$password" $credential= (New-Object pscredential 'admin', (ConvertTo-SecureString -String $password -AsPlainText -Force)) } Write-Host -NoNewLine -ForegroundColor Yellow "CompanyName "; Write-Host $companyName Write-Host -NoNewLine -ForegroundColor Yellow "MemoryLimit "; Write-Host $memoryLimit Write-Host -NoNewLine -ForegroundColor Yellow "FailOn "; Write-Host $failOn Write-Host -NoNewLine -ForegroundColor Yellow "TreatTestFailuresAsWarnings "; Write-Host $treatTestFailuresAsWarnings Write-Host -NoNewLine -ForegroundColor Yellow "Enable Task Scheduler "; Write-Host $enableTaskScheduler Write-Host -NoNewLine -ForegroundColor Yellow "Assign Premium Plan "; Write-Host $assignPremiumPlan Write-Host -NoNewLine -ForegroundColor Yellow "Install Test Runner "; Write-Host $installTestRunner Write-Host -NoNewLine -ForegroundColor Yellow "Install Test Framework "; Write-Host $installTestFramework Write-Host -NoNewLine -ForegroundColor Yellow "Install Test Libraries "; Write-Host $installTestLibraries Write-Host -NoNewLine -ForegroundColor Yellow "Install Perf. Toolkit "; Write-Host $installPerformanceToolkit Write-Host -NoNewLine -ForegroundColor Yellow "InstallOnlyReferencedApps "; Write-Host $installOnlyReferencedApps Write-Host -NoNewLine -ForegroundColor Yellow "generateDependencyArtifact "; Write-Host $generateDependencyArtifact Write-Host -NoNewLine -ForegroundColor Yellow "CopySymbolsFromContainer "; Write-Host $CopySymbolsFromContainer Write-Host -NoNewLine -ForegroundColor Yellow "enableCodeCop "; Write-Host $enableCodeCop Write-Host -NoNewLine -ForegroundColor Yellow "enableAppSourceCop "; Write-Host $enableAppSourceCop Write-Host -NoNewLine -ForegroundColor Yellow "enableUICop "; Write-Host $enableUICop Write-Host -NoNewLine -ForegroundColor Yellow "enablePerTenantExtensionCop "; Write-Host $enablePerTenantExtensionCop Write-Host -NoNewLine -ForegroundColor Yellow "doNotPerformUpgrade "; Write-Host $doNotPerformUpgrade Write-Host -NoNewLine -ForegroundColor Yellow "doNotPublishApps "; Write-Host $doNotPublishApps Write-Host -NoNewLine -ForegroundColor Yellow "uninstallRemovedApps "; Write-Host $uninstallRemovedApps Write-Host -NoNewLine -ForegroundColor Yellow "escapeFromCops "; Write-Host $escapeFromCops Write-Host -NoNewLine -ForegroundColor Yellow "doNotBuildTests "; Write-Host $doNotBuildTests Write-Host -NoNewLine -ForegroundColor Yellow "doNotRunTests "; Write-Host $doNotRunTests Write-Host -NoNewLine -ForegroundColor Yellow "doNotRunBcptTests "; Write-Host $doNotRunBcptTests Write-Host -NoNewLine -ForegroundColor Yellow "useDefaultAppSourceRuleSet "; Write-Host $useDefaultAppSourceRuleSet Write-Host -NoNewLine -ForegroundColor Yellow "rulesetFile "; Write-Host $rulesetFile Write-Host -NoNewLine -ForegroundColor Yellow "generateErrorLog "; Write-Host $generateErrorLog Write-Host -NoNewLine -ForegroundColor Yellow "enableExternalRulesets "; Write-Host $enableExternalRulesets Write-Host -NoNewLine -ForegroundColor Yellow "azureDevOps "; Write-Host $azureDevOps Write-Host -NoNewLine -ForegroundColor Yellow "gitLab "; Write-Host $gitLab Write-Host -NoNewLine -ForegroundColor Yellow "gitHubActions "; Write-Host $gitHubActions Write-Host -NoNewLine -ForegroundColor Yellow "vsixFile "; Write-Host $vsixFile Write-Host -NoNewLine -ForegroundColor Yellow "License file "; if ($licenseFile) { Write-Host "Specified" } else { "Not specified" } Write-Host -NoNewLine -ForegroundColor Yellow "CodeSignCertPfxFile "; if ($codeSignCertPfxFile) { Write-Host "Specified" } else { "Not specified" } Write-Host -NoNewLine -ForegroundColor Yellow "CodeSignCertPfxPassword "; if ($codeSignCertPfxPassword) { Write-Host "Specified" } else { "Not specified" } Write-Host -NoNewLine -ForegroundColor Yellow "CodeSignCertIsSelfSigned "; Write-Host $codeSignCertIsSelfSigned.ToString() Write-Host -NoNewLine -ForegroundColor Yellow "KeyVaultCertPfxFile "; if ($keyVaultCertPfxFile) { Write-Host "Specified" } else { "Not specified" } Write-Host -NoNewLine -ForegroundColor Yellow "KeyVaultCertPfxPassword "; if ($keyVaultCertPfxPassword) { Write-Host "Specified" } else { "Not specified" } Write-Host -NoNewLine -ForegroundColor Yellow "KeyVaultClientId "; Write-Host $keyVaultClientId Write-Host -NoNewLine -ForegroundColor Yellow "BuildOutputFile "; Write-Host $buildOutputFile Write-Host -NoNewLine -ForegroundColor Yellow "ContainerEventLogFile "; Write-Host $containerEventLogFile Write-Host -NoNewLine -ForegroundColor Yellow "TestResultsFile "; Write-Host $testResultsFile Write-Host -NoNewLine -ForegroundColor Yellow "BcptTestResultsFile "; Write-Host $bcptTestResultsFile Write-Host -NoNewLine -ForegroundColor Yellow "TestResultsFormat "; Write-Host $testResultsFormat Write-Host -NoNewLine -ForegroundColor Yellow "AdditionalCountries "; Write-Host ([string]::Join(',',$additionalCountries)) Write-Host -NoNewLine -ForegroundColor Yellow "PackagesFolder "; Write-Host $packagesFolder Write-Host -NoNewLine -ForegroundColor Yellow "OutputFolder "; Write-Host $outputFolder Write-Host -NoNewLine -ForegroundColor Yellow "BuildArtifactFolder "; Write-Host $buildArtifactFolder Write-Host -NoNewLine -ForegroundColor Yellow "CreateRuntimePackages "; Write-Host $createRuntimePackages Write-Host -NoNewLine -ForegroundColor Yellow "AppVersion "; Write-Host $appVersion Write-Host -NoNewLine -ForegroundColor Yellow "AppBuild "; Write-Host $appBuild Write-Host -NoNewLine -ForegroundColor Yellow "AppRevision "; Write-Host $appRevision Write-Host -NoNewLine -ForegroundColor Yellow "SourceRepositoryUrl "; Write-Host $sourceRepositoryUrl Write-Host -NoNewLine -ForegroundColor Yellow "SourceCommit "; Write-Host $sourceCommit Write-Host -NoNewLine -ForegroundColor Yellow "BuildBy "; Write-Host $buildBy Write-Host -NoNewLine -ForegroundColor Yellow "BuildUrl "; Write-Host $buildUrl if ($enableAppSourceCop) { Write-Host -NoNewLine -ForegroundColor Yellow "Mandatory Affixes "; Write-Host ($AppSourceCopMandatoryAffixes -join ',') Write-Host -NoNewLine -ForegroundColor Yellow "Supported Countries "; Write-Host ($AppSourceCopSupportedCountries -join ',') Write-Host -NoNewLine -ForegroundColor Yellow "ObsoleteTagMinAllowedMajorMinor "; Write-Host $obsoleteTagMinAllowedMajorMinor } Write-Host -ForegroundColor Yellow "Install Apps" if ($installApps) { $installApps | ForEach-Object { Write-Host "- $_" } } else { Write-Host "- None" } Write-Host -ForegroundColor Yellow "Install Test Apps" if ($installTestApps) { $installTestApps | ForEach-Object { Write-Host "- $_" } } else { Write-Host "- None" } Write-Host -ForegroundColor Yellow "Previous Apps" if ($previousApps) { $previousApps | ForEach-Object { Write-Host "- $_" } } else { Write-Host "- None" } Write-Host -ForegroundColor Yellow "Application folders" if ($appFolders) { $appFolders | ForEach-Object { Write-Host "- $_" } } else { Write-Host "- None" } Write-Host -ForegroundColor Yellow "Test application folders" if ($testFolders) { $testFolders | ForEach-Object { Write-Host "- $_" } } else { Write-Host "- None" } Write-Host -ForegroundColor Yellow "BCPT Test application folders" if ($bcptTestFolders) { $bcptTestFolders | ForEach-Object { Write-Host "- $_" } } else { Write-Host "- None" } Write-Host -ForegroundColor Yellow "BCPT Test suites" if ($bcptTestSuites) { $bcptTestSuites | ForEach-Object { Write-Host "- $_" } } else { Write-Host "- None" } Write-Host -ForegroundColor Yellow "Custom CodeCops" if ($customCodeCops) { $customCodeCops | ForEach-Object { Write-Host "- $_" } } else { Write-Host "- None" } $vsixFile = DetermineVsixFile -vsixFile $vsixFile $compilerFolder = '' if ($useCompilerFolder) { # We are using CompilerFolder, no need for a filesOnly Container # If we are to create a container, it is for publishing and testing $filesOnly = $false $updateLaunchJson = '' } elseif ($doNotPublishApps) { # We are not using CompilerFolder, but we are not publishing apps either # we can use FilesOnly container $filesOnly = $true $CopySymbolsFromContainer = $true $testToolkitInstalled = $true } if ($doNotPublishApps) { # If we are not going to publish apps, we also cannot run upgrade tests or tests $doNotRunTests = $true $doNotRunBcptTests = $true $doNotPerformUpgrade = $true } if ($doNotBuildTests) { # If we are not going to build tests, set test folders to empty # and set doNotRunTests and doNotRunBcptTests to true $testFolders = @() $bcptTestFolders = @() $installTestRunner = $false $installTestFramework = $false $installTestLibraries = $false $installPerformanceToolkit = $false $doNotRunTests = $true $doNotRunBcptTests = $true } if ($DockerPull) { Write-Host -ForegroundColor Yellow "DockerPull override"; Write-Host $DockerPull.ToString() } else { $DockerPull = { Param($imageName) docker pull $imageName --quiet } } if ($NewBcContainer) { Write-Host -ForegroundColor Yellow "NewBccontainer override"; Write-Host $NewBcContainer.ToString() } else { $NewBcContainer = { Param([Hashtable]$parameters) New-BcContainer @parameters; Invoke-ScriptInBcContainer $parameters.ContainerName -scriptblock { $progressPreference = 'SilentlyContinue' } } } if ($SetBcContainerKeyVaultAadAppAndCertificate) { Write-Host -ForegroundColor Yellow "SetBcContainerKeyVaultAadAppAndCertificate override"; Write-Host $SetBcContainerKeyVaultAadAppAndCertificate.ToString() } else { $SetBcContainerKeyVaultAadAppAndCertificate = { Param([Hashtable]$parameters) Set-BcContainerKeyVaultAadAppAndCertificate @parameters } } if ($ImportTestToolkitToBcContainer) { Write-Host -ForegroundColor Yellow "ImportTestToolkitToBcContainer override"; Write-Host $ImportTestToolkitToBcContainer.ToString() } else { $ImportTestToolkitToBcContainer = { Param([Hashtable]$parameters) Import-TestToolkitToBcContainer @parameters } } if ($CompileAppInBcContainer) { Write-Host -ForegroundColor Yellow "CompileAppInBcContainer override"; Write-Host $CompileAppInBcContainer.ToString() } else { $CompileAppInBcContainer = { Param([Hashtable]$parameters) Compile-AppInBcContainer @parameters } } if ($PreCompileApp) { Write-Host -ForegroundColor Yellow "Custom pre-compilation script defined."; Write-Host $PreCompileApp.ToString() } if ($PostCompileApp) { Write-Host -ForegroundColor Yellow "Custom post-compilation script defined."; Write-Host $PostCompileApp.ToString() } if ($GetBcContainerAppInfo) { Write-Host -ForegroundColor Yellow "GetBcContainerAppInfo override"; Write-Host $GetBcContainerAppInfo.ToString() } else { $GetBcContainerAppInfo = { Param([Hashtable]$parameters) Get-BcContainerAppInfo @parameters } } if ($PublishBcContainerApp) { Write-Host -ForegroundColor Yellow "PublishBcContainerApp override"; Write-Host $PublishBcContainerApp.ToString() } else { $PublishBcContainerApp = { Param([Hashtable]$parameters) Publish-BcContainerApp @parameters } } if ($UnPublishBcContainerApp) { Write-Host -ForegroundColor Yellow "UnPublishBcContainerApp override"; Write-Host $UnPublishBcContainerApp.ToString() } else { $UnPublishBcContainerApp = { Param([Hashtable]$parameters) UnPublish-BcContainerApp @parameters } } if ($InstallBcAppFromAppSource) { Write-Host -ForegroundColor Yellow "InstallBcAppFromAppSource override"; Write-Host $InstallBcAppFromAppSource.ToString() } else { $InstallBcAppFromAppSource = { Param([Hashtable]$parameters) Install-BcAppFromAppSource @parameters } } if ($SignBcContainerApp) { Write-Host -ForegroundColor Yellow "SignBcContainerApp override"; Write-Host $SignBcContainerApp.ToString() } else { $SignBcContainerApp = { Param([Hashtable]$parameters) Sign-BcContainerApp @parameters } } if ($ImportTestDataInBcContainer) { Write-Host -ForegroundColor Yellow "ImportTestDataInBcContainer override"; Write-Host $ImportTestDataInBcContainer.ToString() } if ($RunTestsInBcContainer) { Write-Host -ForegroundColor Yellow "RunTestsInBcContainer override"; Write-Host $RunTestsInBcContainer.ToString() } else { $RunTestsInBcContainer = { Param([Hashtable]$parameters) Run-TestsInBcContainer @parameters } } if ($RunBCPTTestsInBcContainer ) { Write-Host -ForegroundColor Yellow "RunBCPTTestsInBcContainer override"; Write-Host $RunBCPTTestsInBcContainer.ToString() } else { $RunBCPTTestsInBcContainer = { Param([Hashtable]$parameters) Run-BCPTTestsInBcContainer @parameters } } if ($GetBcContainerAppRuntimePackage) { Write-Host -ForegroundColor Yellow "GetBcContainerAppRuntimePackage override"; Write-Host $GetBcContainerAppRuntimePackage.ToString() } else { $GetBcContainerAppRuntimePackage = { Param([Hashtable]$parameters) Get-BcContainerAppRuntimePackage @parameters } } if ($RemoveBcContainer) { Write-Host -ForegroundColor Yellow "RemoveBcContainer override"; Write-Host $RemoveBcContainer.ToString() } else { $RemoveBcContainer = { Param([Hashtable]$parameters) Remove-BcContainer @parameters } } if ($GetBestGenericImageName) { Write-Host -ForegroundColor Yellow "GetBestGenericImageName override"; Write-Host $GetBestGenericImageName.ToString() } else { $GetBestGenericImageName = { Param([Hashtable]$parameters) Get-BestGenericImageName @parameters } } if ($GetBcContainerEventLog) { Write-Host -ForegroundColor Yellow "GetBcContainerEventLog override"; Write-Host $GetBcContainerEventLog.ToString() } else { $GetBcContainerEventLog = { Param([Hashtable]$parameters) Get-BcContainerEventLog @parameters } } if ($InstallMissingDependencies) { Write-Host -ForegroundColor Yellow "InstallMissingDependencies override"; Write-Host $InstallMissingDependencies.ToString() } if ($gitHubActions) { Write-Host "::endgroup::" } $signApps = ($codeSignCertPfxFile -ne "") Measure-Command { if ( $artifactUrl -and !$reUseContainer -and !$doNotPublishApps -and !$filesOnly) { if ($gitHubActions) { Write-Host "::group::Pulling generic image" } Measure-Command { Write-Host -ForegroundColor Yellow @' _____ _ _ _ _ _ | __ \ | | (_) (_) (_) | |__) | _| | |_ _ __ __ _ __ _ ___ _ __ ___ _ __ _ ___ _ _ __ ___ __ _ __ _ ___ | ___/ | | | | | | '_ \ / _` | / _` |/ _ \ '_ \ / _ \ '__| |/ __| | | '_ ` _ \ / _` |/ _` |/ _ \ | | | |_| | | | | | | | (_| | | (_| | __/ | | | __/ | | | (__ | | | | | | | (_| | (_| | __/ |_| \__,_|_|_|_|_| |_|\__, | \__, |\___|_| |_|\___|_| |_|\___| |_|_| |_| |_|\__,_|\__, |\___| __/ | __/ | __/ | |___/ |___/ |___/ '@ if (!$useGenericImage) { $Parameters = @{ "filesOnly" = $filesOnly } $useGenericImage = Invoke-Command -ScriptBlock $GetBestGenericImageName -ArgumentList $Parameters } Write-Host "Pulling $useGenericImage" Invoke-Command -ScriptBlock $DockerPull -ArgumentList $useGenericImage } | ForEach-Object { Write-Host -ForegroundColor Yellow "`nPulling generic image took $([int]$_.TotalSeconds) seconds" } if ($gitHubActions) { Write-Host "::endgroup::" } } $err = $null $prevProgressPreference = $progressPreference $progressPreference = 'SilentlyContinue' try { @("")+$additionalCountries | ForEach-Object { $testCountry = $_.Trim() $testToolkitInstalled = $false if ($gitHubActions) { Write-Host "::group::Creating container" } Write-Host -ForegroundColor Yellow @' _____ _ _ _ _ / ____| | | (_) | | (_) | | _ __ ___ __ _| |_ _ _ __ __ _ ___ ___ _ __ | |_ __ _ _ _ __ ___ _ __ | | | '__/ _ \/ _` | __| | '_ \ / _` | / __/ _ \| '_ \| __/ _` | | '_ \ / _ \ '__| | |____| | | __/ (_| | |_| | | | | (_| | | (__ (_) | | | | |_ (_| | | | | | __/ | \_____|_| \___|\__,_|\__|_|_| |_|\__, | \___\___/|_| |_|\__\__,_|_|_| |_|\___|_| __/ | |___/ '@ Measure-Command { if ($testCountry) { $artifactSegments = $artifactUrl.Split('?')[0].Split('/') $artifactUrl = $artifactUrl.Replace("/$($artifactSegments[4])/$($artifactSegments[5])","/$($artifactSegments[4])/$testCountry") Write-Host -ForegroundColor Yellow "Creating container for additional country $testCountry" } $Parameters = @{} $useExistingContainer = $false $compilerFolder = '' if ($useCompilerFolder) { Write-Host "Creating CompilerFolder" $compilerFolder = New-BcCompilerFolder ` -artifactUrl $artifactUrl ` -cacheFolder $artifactCachePath ` -vsixFile $vsixFile ` -containerName $containerName Write-Host "CompilerFolder $compilerFolder created" } if ($filesOnly -or !$doNotPublishApps) { # If we are going to build using a filesOnly container or we are going to publish apps, we need a container if (Test-BcContainer -containerName $containerName) { if ($bcAuthContext) { if ($artifactUrl -eq (Get-BcContainerArtifactUrl -containerName $containerName)) { $useExistingContainer = ((Get-BcContainerPath -containerName $containerName -path $baseFolder) -ne "") } } elseif ($reUseContainer) { $containerArtifactUrl = Get-BcContainerArtifactUrl -containerName $containerName if ($artifactUrl -ne $containerArtifactUrl) { Write-Host "WARNING: Reusing a container based on $($containerArtifactUrl.Split('?')[0]), should be $($ArtifactUrl.Split('?')[0])" } if ((Get-BcContainerPath -containerName $containerName -path $baseFolder) -eq "") { throw "$baseFolder is not shared with container $containerName" } $useExistingContainer = $true } } if ($useExistingContainer) { Write-Host "Reusing existing docker container" } else { Write-Host "Creaing docker container" $Parameters += @{ "FilesOnly" = $filesOnly } if ($imageName) { $Parameters += @{ "imageName" = $imageName } } if ($memoryLimit) { $Parameters += @{ "memoryLimit" = $memoryLimit } } $Parameters += @{ "accept_eula" = $true "accept_insiderEula" = $accept_insiderEula "containerName" = $containerName "artifactUrl" = $artifactUrl "useGenericImage" = $useGenericImage "Credential" = $credential "auth" = $auth "vsixFile" = $vsixFile "updateHosts" = !$IsInsideContainer "licenseFile" = $licenseFile "EnableTaskScheduler" = $enableTaskScheduler "AssignPremiumPlan" = $assignPremiumPlan "additionalParameters" = @("--volume ""$($baseFolder):c:\sources""") } if ($sharedFolder) { $Parameters.additionalParameters += @("--volume ""$($sharedFolder):c:\shared""") } Invoke-Command -ScriptBlock $NewBcContainer -ArgumentList $Parameters if (-not $bcAuthContext) { if ($keyVaultCertPfxFile -and $KeyVaultClientId -and $keyVaultCertPfxPassword) { $Parameters = @{ "containerName" = $containerName "pfxFile" = $keyVaultCertPfxFile "pfxPassword" = $keyVaultCertPfxPassword "clientId" = $keyVaultClientId } Invoke-Command -ScriptBlock $SetBcContainerKeyVaultAadAppAndCertificate -ArgumentList $Parameters } } } if ($tenant -ne 'default' -and -not (Get-BcContainerTenants -containerName $containerName | Where-Object { $_.id -eq $tenant })) { $Parameters = @{ "containerName" = $containerName "tenantId" = $tenant } New-BcContainerTenant @Parameters $Parameters = @{ "containerName" = $containerName "tenant" = $tenant "credential" = $credential "permissionsetId" = "SUPER" "ChangePasswordAtNextLogOn" = $false "assignPremiumPlan" = $assignPremiumPlan } New-BcContainerBcUser @Parameters $tenantApps = Get-BcContainerAppInfo -containerName $containerName -tenant $tenant -tenantSpecificProperties -sort DependenciesFirst Get-BcContainerAppInfo -containerName $containerName -tenant "default" -tenantSpecificProperties -sort DependenciesFirst | Where-Object { $_.IsInstalled } | ForEach-Object { $name = $_.Name $version = $_.Version $tenantApp = $tenantApps | Where-Object { $_.Name -eq $name -and $_.Version -eq $version } if ($tenantApp.SyncState -eq "NotSynced" -or $tenantApp.SyncState -eq 3) { Sync-BcContainerApp -containerName $containerName -tenant $tenant -appName $Name -appVersion $Version -Mode ForceSync -Force } if (-not $tenantApp.IsInstalled) { Install-BcContainerApp -containerName $containerName -tenant $tenant -appName $_.Name -appVersion $_.Version } } } } } | ForEach-Object { Write-Host -ForegroundColor Yellow "`nCreating container took $([int]$_.TotalSeconds) seconds" } if ($gitHubActions) { Write-Host "::endgroup::" } if ($gitHubActions) { Write-Host "::group::Resolving dependencies" } Write-Host -ForegroundColor Yellow @' _____ _ _ _ _ _ | __ \ | | (_) | | | | (_) | |__) |___ ___ ___ | |_ ___ _ __ __ _ __| | ___ _ __ ___ _ __ __| | ___ _ __ ___ _ ___ ___ | _ // _ \ __|/ _ \| \ \ / / | '_ \ / _` | / _` |/ _ \ '_ \ / _ \ '_ \ / _` |/ _ \ '_ \ / __| |/ _ \ __| | | \ \ __\__ \ (_) | |\ V /| | | | | (_| | | (_| | __/ |_) | __/ | | | (_| | __/ | | | (__| | __\__ \ |_| \_\___|___/\___/|_| \_/ |_|_| |_|\__, | \__,_|\___| .__/ \___|_| |_|\__,_|\___|_| |_|\___|_|\___|___/ __/ | | | |___/ |_| '@ $unknownAppDependencies = @() $unknownTestAppDependencies = @() $sortedAppFolders = @(Sort-AppFoldersByDependencies -appFolders ($appFolders) -WarningAction SilentlyContinue -unknownDependencies ([ref]$unknownAppDependencies)) $sortedTestAppFolders = @(Sort-AppFoldersByDependencies -appFolders ($appFolders+$testFolders+$bcptTestFolders) -WarningAction SilentlyContinue -unknownDependencies ([ref]$unknownTestAppDependencies) | Where-Object { $appFolders -notcontains $_ }) Write-Host "Sorted App folders" $sortedAppFolders | ForEach-Object { Write-Host "- $_" } Write-Host "External dependencies" if ($unknownAppDependencies) { $unknownAppDependencies | ForEach-Object { Write-Host "- $_" } $missingAppDependencies = $unknownAppDependencies | ForEach-Object { $_.Split(':')[0] } } else { Write-Host "- None" $missingAppDependencies = @() } $missingTestAppDependencies = @() Write-Host "Sorted TestApp folders" if ($sortedTestAppFolders.count -eq 0) { Write-Host "- None" } else { $sortedTestAppFolders | ForEach-Object { Write-Host "- $_" } Write-Host "External TestApp dependencies" if ($unknownTestAppDependencies) { $unknownTestAppDependencies | ForEach-Object { Write-Host "- $_" } $missingTestAppDependencies = $unknownTestAppDependencies | ForEach-Object { $_.Split(':')[0] } } else { Write-Host "- None" } } # Include unknown app dependencies from previous apps (which doesn't already exist in unknown app dependencies) if ($previousApps) { Write-Host "Copying previous apps to packages folder" $tempFolder = Join-Path ([System.IO.Path]::GetTempPath()) ([guid]::NewGuid().ToString()) try { $unknownPreviousAppDependencies = @() $appList = CopyAppFilesToFolder -appFiles $previousApps -folder $tempFolder $sortedPreviousApps = Sort-AppFilesByDependencies -appFiles $appList -containerName $containerName -WarningAction SilentlyContinue -unknownDependencies ([ref]$unknownPreviousAppDependencies) Write-Host "Previous apps" $sortedPreviousApps | ForEach-Object { Write-Host "- $([System.IO.Path]::GetFileName($_))" } Write-Host "External previous app dependencies" if ($unknownPreviousAppDependencies) { # Add unknown Previous App Dependencies to missingAppDependencies foreach($appDependency in $unknownPreviousAppDependencies) { $appId = $appDependency.Split(':')[0] if ($appId -ne ([guid]::Empty.ToString())) { Write-Host "- $appDependency" if ($missingAppDependencies -notcontains $appId) { $missingAppDependencies += @($appId) $unknownAppDependencies += @($appDependency) } } } } else { Write-Host "- None" } } finally { Remove-Item -Path $tempFolder -recurse -force } } if ($gitHubActions) { Write-Host "::endgroup::" } if ($installApps) { if ($gitHubActions) { Write-Host "::group::Installing apps" } Write-Host -ForegroundColor Yellow @' _____ _ _ _ _ |_ _| | | | | (_) | | _ __ ___| |_ __ _| | |_ _ __ __ _ __ _ _ __ _ __ ___ | | | '_ \/ __| __/ _` | | | | '_ \ / _` | / _` | '_ \| '_ \/ __| _| |_| | | \__ \ |_ (_| | | | | | | | (_| | | (_| | |_) | |_) \__ \ |_____|_| |_|___/\__\__,_|_|_|_|_| |_|\__, | \__,_| .__/| .__/|___/ __/ | | | | | |___/ |_| |_| '@ Measure-Command { if ($testCountry) { Write-Host -ForegroundColor Yellow "Installing apps for additional country $testCountry" } $tmpAppFolder = Join-Path ([System.IO.Path]::GetTempPath()) ([guid]::NewGuid().ToString()) $tmpAppFiles = @() $installApps | ForEach-Object{ $appId = [Guid]::Empty if ([Guid]::TryParse($_, [ref] $appId)) { if (-not $bcAuthContext) { throw "InstallApps can only specify AppIds for AppSource Apps when running against a cloud instance" } if ($generateDependencyArtifact) { Write-Host -ForegroundColor Red "Cannot add AppSource Apps to dependency artifacts" } if ((!$installOnlyReferencedApps) -or ($missingAppDependencies -contains $appId)) { $Parameters = @{ "bcAuthContext" = $bcAuthContext "environment" = $environment "appId" = "$appId" "acceptIsvEula" = $true "installOrUpdateNeededDependencies" = $true } Invoke-Command -ScriptBlock $InstallBcAppFromAppSource -ArgumentList $Parameters } } elseif ($useCompilerFolder -or $filesOnly -and (-not $bcAuthContext)) { CopyAppFilesToFolder -appfiles $_ -folder $packagesFolder | ForEach-Object { Write-Host "Copying $($_.SubString($packagesFolder.Length+1)) to symbols folder" } } else { $tmpAppFiles += @(CopyAppFilesToFolder -appfiles $_ -folder $tmpAppFolder) } } if ($tmpAppFiles) { $Parameters = @{ "containerName" = $containerName "tenant" = $tenant "credential" = $credential "appFile" = $tmpAppFiles "skipVerification" = $true "sync" = $true "install" = $true } if ($installOnlyReferencedApps) { $parameters += @{ "includeOnlyAppIds" = $missingAppDependencies } } if ($generateDependencyArtifact -and !($testCountry)) { $parameters += @{ "CopyInstalledAppsToFolder" = Join-Path $buildArtifactFolder "Dependencies" } } if ($bcAuthContext) { $Parameters += @{ "bcAuthContext" = $bcAuthContext "environment" = $environment } } if (!$doNotPublishApps) { Invoke-Command -ScriptBlock $PublishBcContainerApp -ArgumentList $Parameters } if (!$testCountry -and $compilerFolder) { Copy-AppFilesToCompilerFolder -compilerFolder $compilerFolder -appFiles $Parameters.appFile } Remove-Item -Path $tmpAppFolder -Recurse -Force } } | ForEach-Object { Write-Host -ForegroundColor Yellow "`nInstalling apps took $([int]$_.TotalSeconds) seconds" } if ($gitHubActions) { Write-Host "::endgroup::" } } if ($InstallMissingDependencies) { $Parameters = @{ "containerName" = $containerName "tenant" = $tenant } $installedAppIds = @(GetInstalledAppIds -useCompilerFolder $useCompilerFolder -filesOnly $filesOnly -compilerFolder $compilerFolder -packagesFolder $packagesFolder -Parameters $Parameters) $missingAppDependencies = @($missingAppDependencies | Where-Object { $installedAppIds -notcontains $_ }) if ($missingAppDependencies) { if ($gitHubActions) { Write-Host "::group::Installing app dependencies" } Write-Host -ForegroundColor Yellow @' _____ _ _ _ _ _ _ _ |_ _| | | | | (_) | | | | (_) | | _ __ ___| |_ __ _| | |_ _ __ __ _ __ _ _ __ _ __ __| | ___ _ __ ___ _ __ __| | ___ _ __ ___ _ ___ ___ | | | '_ \/ __| __/ _` | | | | '_ \ / _` | / _` | '_ \| '_ \ / _` |/ _ \ '_ \ / _ \ '_ \ / _` |/ _ \ '_ \ / __| |/ _ \/ __| _| |_| | | \__ \ || (_| | | | | | | | (_| | | (_| | |_) | |_) | | (_| | __/ |_) | __/ | | | (_| | __/ | | | (__| | __/\__ \ |_____|_| |_|___/\__\__,_|_|_|_|_| |_|\__, | \__,_| .__/| .__/ \__,_|\___| .__/ \___|_| |_|\__,_|\___|_| |_|\___|_|\___||___/ __/ | | | | | | | |___/ |_| |_| |_| '@ Measure-Command { Write-Host "Missing App dependencies" $missingAppDependencies | ForEach-Object { Write-Host "- $_" } $Parameters = @{ "missingDependencies" = @($unknownAppDependencies | Where-Object { $missingAppDependencies -contains "$_".Split(':')[0] }) } if ($useCompilerFolder -or $filesOnly) { $Parameters += @{ "appSymbolsFolder" = $packagesFolder } } else { $Parameters += @{ "containerName" = $containerName "tenant" = $tenant } } if ($generateDependencyArtifact -and !($testCountry)) { $parameters += @{ "CopyInstalledAppsToFolder" = Join-Path $buildArtifactFolder "Dependencies" } } Invoke-Command -ScriptBlock $InstallMissingDependencies -ArgumentList $Parameters } | ForEach-Object { Write-Host -ForegroundColor Yellow "`nInstalling app dependencies took $([int]$_.TotalSeconds) seconds" } if ($gitHubActions) { Write-Host "::endgroup::" } } } if ((($testCountry) -or !($appFolders -or $testFolders -or $bcptTestFolders)) -and !$doNotPublishApps -and ($installTestRunner -or $installTestFramework -or $installTestLibraries -or $installPerformanceToolkit)) { if ($gitHubActions) { Write-Host "::group::Importing test toolkit" } Write-Host -ForegroundColor Yellow @' _____ _ _ _ _ _ _ _ _ _ |_ _| | | (_) | | | | | | | | | (_) | | | _ __ ___ _ __ ___ _ __| |_ _ _ __ __ _ | |_ ___ ___| |_ | |_ ___ ___ | | | ___| |_ | | | '_ ` _ \| '_ \ / _ \| '__| __| | '_ \ / _` | | __/ _ \/ __| __| | __/ _ \ / _ \| | |/ / | __| _| |_| | | | | | |_) | (_) | | | |_| | | | | (_| | | || __/\__ \ |_ | || (_) | (_) | | <| | |_ |_____|_| |_| |_| .__/ \___/|_| \__|_|_| |_|\__, | \__\___||___/\__| \__\___/ \___/|_|_|\_\_|\__| | | __/ | |_| |___/ '@ Measure-Command { Write-Host -ForegroundColor Yellow "Importing Test Toolkit for additional country $testCountry" $Parameters = @{ "containerName" = $containerName "includeTestLibrariesOnly" = $installTestLibraries "includeTestFrameworkOnly" = !$installTestLibraries -and ($installTestFramework -or $installPerformanceToolkit) "includeTestRunnerOnly" = !$installTestLibraries -and !$installTestFramework -and ($installTestRunner -or $installPerformanceToolkit) "includePerformanceToolkit" = $installPerformanceToolkit "doNotUseRuntimePackages" = $true "useDevEndpoint" = $useDevEndpoint } if ($bcAuthContext) { $Parameters += @{ "bcAuthContext" = $bcAuthContext "environment" = $environment } } elseif($useDevEndpoint) { $Parameters += @{ "credential" = $credential } } Invoke-Command -ScriptBlock $ImportTestToolkitToBcContainer -ArgumentList $Parameters } | ForEach-Object { Write-Host -ForegroundColor Yellow "`nImporting Test Toolkit took $([int]$_.TotalSeconds) seconds" } if ($gitHubActions) { Write-Host "::endgroup::" } if ($installTestApps) { if ($gitHubActions) { Write-Host "::group::Installing test apps" } Write-Host -ForegroundColor Yellow @' _____ _ _ _ _ _ _ |_ _| | | | | (_) | | | | | | _ __ ___| |_ __ _| | |_ _ __ __ _ | |_ ___ ___| |_ __ _ _ __ _ __ ___ | | | '_ \/ __| __/ _` | | | | '_ \ / _` | | __/ _ \/ __| __| / _` | '_ \| '_ \/ __| _| |_| | | \__ \ || (_| | | | | | | | (_| | | || __/\__ \ |_ | (_| | |_) | |_) \__ \ |_____|_| |_|___/\__\__,_|_|_|_|_| |_|\__, | \__\___||___/\__| \__,_| .__/| .__/|___/ __/ | | | | | |___/ |_| |_| '@ Measure-Command { Write-Host -ForegroundColor Yellow "Installing test apps for additional country $testCountry" $installTestApps | ForEach-Object{ $appId = [Guid]::Empty if ([Guid]::TryParse($_, [ref] $appId)) { if (-not $bcAuthContext) { throw "InstallApps can only specify AppIds for AppSource Apps when running against a cloud instance" } if ((!$installOnlyReferencedApps) -or ($missingTestAppDependencies -contains $appId)) { $Parameters = @{ "bcAuthContext" = $bcAuthContext "environment" = $environment "appId" = "$appId" "acceptIsvEula" = $true "installOrUpdateNeededDependencies" = $true } Invoke-Command -ScriptBlock $InstallBcAppFromAppSource -ArgumentList $Parameters } } else { $Parameters = @{ "containerName" = $containerName "tenant" = $tenant "credential" = $credential "appFile" = "$_".Trim('()') "skipVerification" = $true "sync" = $true "install" = $true } if ($installOnlyReferencedApps) { $parameters += @{ "includeOnlyAppIds" = $missingTestAppDependencies } } if ($bcAuthContext) { $Parameters += @{ "bcAuthContext" = $bcAuthContext "environment" = $environment } } if (!$doNotPublishApps) { Invoke-Command -ScriptBlock $PublishBcContainerApp -ArgumentList $Parameters } if (!$testCountry -and $compilerFolder) { Copy-AppFilesToCompilerFolder -compilerFolder $compilerFolder -appFiles $Parameters.appFile } } } } | ForEach-Object { Write-Host -ForegroundColor Yellow "`nInstalling test apps took $([int]$_.TotalSeconds) seconds" } if ($gitHubActions) { Write-Host "::endgroup::" } } } if ((($testCountry) -or !($appFolders -or $testFolders -or $bcptTestFolders)) -and ($InstallMissingDependencies)) { $Parameters = @{ "containerName" = $containerName "tenant" = $tenant } $installedAppIds = @(GetInstalledAppIds -useCompilerFolder $useCompilerFolder -filesOnly $filesOnly -compilerFolder $compilerFolder -packagesFolder $packagesFolder -Parameters $Parameters) $missingTestAppDependencies = @($missingTestAppDependencies | Where-Object { $installedAppIds -notcontains $_ }) if ($missingTestAppDependencies) { if ($gitHubActions) { Write-Host "::group::Installing test app dependencies" } Write-Host -ForegroundColor Yellow @' _____ _ _ _ _ _ _ _ _ _ |_ _| | | | | (_) | | | | | | | | (_) | | _ __ ___| |_ __ _| | |_ _ __ __ _ | |_ ___ ___| |_ __ _ _ __ _ __ __| | ___ _ __ ___ _ __ __| | ___ _ __ ___ _ ___ ___ | | | '_ \/ __| __/ _` | | | | '_ \ / _` | | __/ _ \/ __| __| / _` | '_ \| '_ \ / _` |/ _ \ '_ \ / _ \ '_ \ / _` |/ _ \ '_ \ / __| |/ _ \/ __| _| |_| | | \__ \ || (_| | | | | | | | (_| | | || __/\__ \ |_ | (_| | |_) | |_) | | (_| | __/ |_) | __/ | | | (_| | __/ | | | (__| | __/\__ \ |_____|_| |_|___/\__\__,_|_|_|_|_| |_|\__, | \__\___||___/\__| \__,_| .__/| .__/ \__,_|\___| .__/ \___|_| |_|\__,_|\___|_| |_|\___|_|\___||___/ __/ | | | | | | | |___/ |_| |_| |_| '@ Measure-Command { Write-Host "Missing TestApp dependencies" $missingTestAppDependencies | ForEach-Object { Write-Host "- $_" } $Parameters = @{ "missingDependencies" = @($unknownTestAppDependencies | Where-Object { $missingTestAppDependencies -contains "$_".Split(':')[0] }) } if ($useCompilerFolder -or $filesOnly) { $Parameters += @{ "appSymbolsFolder" = $packagesFolder } } else { $Parameters += @{ "containerName" = $containerName "tenant" = $tenant } } Invoke-Command -ScriptBlock $InstallMissingDependencies -ArgumentList $Parameters } | ForEach-Object { Write-Host -ForegroundColor Yellow "`nInstalling testapp dependencies took $([int]$_.TotalSeconds) seconds" } if ($gitHubActions) { Write-Host "::endgroup::" } } } if (-not $testCountry) { if ($appFolders -or $testFolders -or $bcptTestFolders) { if ($gitHubActions) { Write-Host "::group::Compiling apps" } Write-Host -ForegroundColor Yellow @' _____ _ _ _ / ____| (_) (_) | | ___ _ __ ___ _ __ _| |_ _ __ __ _ __ _ _ __ _ __ ___ | | / _ \| '_ ` _ \| '_ \| | | | '_ \ / _` | / _` | '_ \| '_ \/ __| | |____ (_) | | | | | | |_) | | | | | | | (_| | | (_| | |_) | |_) \__ \ \_____\___/|_| |_| |_| .__/|_|_|_|_| |_|\__, | \__,_| .__/| .__/|___/ | | __/ | | | | | |_| |___/ |_| |_| '@ } $measureText = "" Measure-Command { $previousAppsCopied = $false $previousAppInfos = @() $appsFolder = @{} $apps = @() $testApps = @() $bcptTestApps = @() $sortedAppFolders+$sortedTestAppFolders | Select-Object -Unique | ForEach-Object { $folder = $_ $bcptTestApp = $bcptTestFolders.Contains($folder) $testApp = $testFolders.Contains($folder) $app = $appFolders.Contains($folder) if (($testApp -or $bcptTestApp) -and !$testToolkitInstalled -and !$doNotPublishApps -and ($installTestRunner -or $installTestFramework -or $installTestLibraries -or $installPerformanceToolkit)) { if ($gitHubActions) { Write-Host "::endgroup::" } if ($gitHubActions) { Write-Host "::group::Importing test toolkit" } Write-Host -ForegroundColor Yellow @' _____ _ _ _ _ _ _ _ _ _ |_ _| | | (_) | | | | | | | | | (_) | | | _ __ ___ _ __ ___ _ __| |_ _ _ __ __ _ | |_ ___ ___| |_ | |_ ___ ___ | | | ___| |_ | | | '_ ` _ \| '_ \ / _ \| '__| __| | '_ \ / _` | | __/ _ \/ __| __| | __/ _ \ / _ \| | |/ / | __| _| |_| | | | | | |_) | (_) | | | |_| | | | | (_| | | || __/\__ \ |_ | || (_) | (_) | | <| | |_ |_____|_| |_| |_| .__/ \___/|_| \__|_|_| |_|\__, | \__\___||___/\__| \__\___/ \___/|_|_|\_\_|\__| | | __/ | |_| |___/ '@ Measure-Command { $measureText = ", test apps and importing test toolkit" $Parameters = @{ "containerName" = $containerName "includeTestLibrariesOnly" = $installTestLibraries "includeTestFrameworkOnly" = !$installTestLibraries -and ($installTestFramework -or $installPerformanceToolkit) "includeTestRunnerOnly" = !$installTestLibraries -and !$installTestFramework -and ($installTestRunner -or $installPerformanceToolkit) "includePerformanceToolkit" = $installPerformanceToolkit "doNotUseRuntimePackages" = $true "useDevEndpoint" = $useDevEndpoint } if ($bcAuthContext) { $Parameters += @{ "bcAuthContext" = $bcAuthContext "environment" = $environment } } elseif ($useDevEndpoint) { $Parameters += @{ "credential" = $credential } } Invoke-Command -ScriptBlock $ImportTestToolkitToBcContainer -ArgumentList $Parameters $testToolkitInstalled = $true } | ForEach-Object { Write-Host -ForegroundColor Yellow "`nImporting Test Toolkit took $([int]$_.TotalSeconds) seconds" } if ($installTestApps) { if ($gitHubActions) { Write-Host "::endgroup::" } if ($gitHubActions) { Write-Host "::group::Installing test apps" } Write-Host -ForegroundColor Yellow @' _____ _ _ _ _ _ _ |_ _| | | | | (_) | | | | | | _ __ ___| |_ __ _| | |_ _ __ __ _ | |_ ___ ___| |_ __ _ _ __ _ __ ___ | | | '_ \/ __| __/ _` | | | | '_ \ / _` | | __/ _ \/ __| __| / _` | '_ \| '_ \/ __| _| |_| | | \__ \ || (_| | | | | | | | (_| | | || __/\__ \ |_ | (_| | |_) | |_) \__ \ |_____|_| |_|___/\__\__,_|_|_|_|_| |_|\__, | \__\___||___/\__| \__,_| .__/| .__/|___/ __/ | | | | | |___/ |_| |_| '@ Measure-Command { Write-Host -ForegroundColor Yellow "Installing test apps" $installTestApps | ForEach-Object{ $appId = [Guid]::Empty if ([Guid]::TryParse($_, [ref] $appId)) { if (-not $bcAuthContext) { throw "InstallApps can only specify AppIds for AppSource Apps when running against a cloud instance" } if ((!$installOnlyReferencedApps) -or ($missingTestAppDependencies -contains $appId)) { $Parameters = @{ "bcAuthContext" = $bcAuthContext "environment" = $environment "appId" = "$appId" "acceptIsvEula" = $true "installOrUpdateNeededDependencies" = $true } Invoke-Command -ScriptBlock $InstallBcAppFromAppSource -ArgumentList $Parameters } } else { $Parameters = @{ "containerName" = $containerName "tenant" = $tenant "credential" = $credential "appFile" = "$_".Trim('()') "skipVerification" = $true "sync" = $true "install" = $true } if ($installOnlyReferencedApps) { $parameters += @{ "includeOnlyAppIds" = $missingTestAppDependencies } } if ($bcAuthContext) { $Parameters += @{ "bcAuthContext" = $bcAuthContext "environment" = $environment } } if (!$doNotPublishApps) { Invoke-Command -ScriptBlock $PublishBcContainerApp -ArgumentList $Parameters } if ($compilerFolder) { Copy-AppFilesToCompilerFolder -compilerFolder $compilerFolder -appFiles $Parameters.appFile } } } } | ForEach-Object { Write-Host -ForegroundColor Yellow "`nInstalling test apps took $([int]$_.TotalSeconds) seconds" } } if ($gitHubActions) { Write-Host "::endgroup::" } if ($InstallMissingDependencies) { $Parameters = @{ "containerName" = $containerName "tenant" = $tenant } $installedAppIds = @(GetInstalledAppIds -useCompilerFolder $useCompilerFolder -filesOnly $filesOnly -compilerFolder $compilerFolder -packagesFolder $packagesFolder -Parameters $Parameters) $missingTestAppDependencies = @($missingTestAppDependencies | Where-Object { $installedAppIds -notcontains $_ }) if ($missingTestAppDependencies) { if ($gitHubActions) { Write-Host "::group::Installing test app dependencies" } Write-Host -ForegroundColor Yellow @' _____ _ _ _ _ _ _ _ _ _ |_ _| | | | | (_) | | | | | | | | (_) | | _ __ ___| |_ __ _| | |_ _ __ __ _ | |_ ___ ___| |_ __ _ _ __ _ __ __| | ___ _ __ ___ _ __ __| | ___ _ __ ___ _ ___ ___ | | | '_ \/ __| __/ _` | | | | '_ \ / _` | | __/ _ \/ __| __| / _` | '_ \| '_ \ / _` |/ _ \ '_ \ / _ \ '_ \ / _` |/ _ \ '_ \ / __| |/ _ \/ __| _| |_| | | \__ \ || (_| | | | | | | | (_| | | || __/\__ \ |_ | (_| | |_) | |_) | | (_| | __/ |_) | __/ | | | (_| | __/ | | | (__| | __/\__ \ |_____|_| |_|___/\__\__,_|_|_|_|_| |_|\__, | \__\___||___/\__| \__,_| .__/| .__/ \__,_|\___| .__/ \___|_| |_|\__,_|\___|_| |_|\___|_|\___||___/ __/ | | | | | | | |___/ |_| |_| |_| '@ Measure-Command { Write-Host "Missing TestApp dependencies" $missingTestAppDependencies | ForEach-Object { Write-Host "- $_" } $Parameters = @{ "missingDependencies" = @($unknownTestAppDependencies | Where-Object { $missingTestAppDependencies -contains "$_".Split(':')[0] }) } if ($useCompilerFolder -or $filesOnly) { $Parameters += @{ "appSymbolsFolder" = $packagesFolder } } else { $Parameters += @{ "containerName" = $containerName "tenant" = $tenant } } Invoke-Command -ScriptBlock $InstallMissingDependencies -ArgumentList $Parameters } | ForEach-Object { Write-Host -ForegroundColor Yellow "`nInstalling testapp dependencies took $([int]$_.TotalSeconds) seconds" } if ($gitHubActions) { Write-Host "::endgroup::" } } } if ($gitHubActions) { Write-Host "::group::Compiling test apps" } Write-Host -ForegroundColor Yellow @' _____ _ _ _ _ _ / ____| (_) (_) | | | | | | ___ _ __ ___ _ __ _| |_ _ __ __ _ | |_ ___ ___| |_ __ _ _ __ _ __ ___ | | / _ \| '_ ` _ \| '_ \| | | | '_ \ / _` | | __/ _ \ __| __| / _` | '_ \| '_ \/ __| | |____ (_) | | | | | | |_) | | | | | | | (_| | | |_ __\__ \ |_ | (_| | |_) | |_) \__ \ \_____\___/|_| |_| |_| .__/|_|_|_|_| |_|\__, | \__\___|___/\__| \__,_| .__/| .__/|___/ | | __/ | | | | | |_| |___/ |_| |_| '@ } $Parameters = @{ } $CopParameters = @{ } if ($bcAuthContext) { $Parameters += @{ "bcAuthContext" = $bcAuthContext "environment" = $environment } } if ($app) { $CopParameters += @{ "EnableCodeCop" = $enableCodeCop "EnableAppSourceCop" = $enableAppSourceCop "EnableUICop" = $enableUICop "EnablePerTenantExtensionCop" = $enablePerTenantExtensionCop "failOn" = $failOn } if ($customCodeCops.Count -gt 0) { $CopParameters += @{ "CustomCodeCops" = $customCodeCops } } if ($enableExternalRulesets) { $CopParameters += @{ "EnableExternalRulesets" = $true } } if ("$rulesetFile" -ne "" -or $useDefaultAppSourceRuleSet) { if ($useDefaultAppSourceRuleSet) { Write-Host "Creating ruleset for pipeline" $ruleset = [ordered]@{ "name" = "Run-AlPipeline RuleSet" "description" = "Generated by Run-AlPipeline" "includedRuleSets" = @() } if ($rulesetFile) { Write-Host "Including custom ruleset" $ruleset.includedRuleSets += @(@{ "action" = "Default" "path" = Get-BcContainerPath -containerName $containerName -path $ruleSetFile }) } $appSourceRulesetFile = Join-Path $folder "appsource.default.ruleset.json" Download-File -sourceUrl "https://bcartifacts.azureedge.net/rulesets/appsource.default.ruleset.json" -destinationFile $appSourceRulesetFile $ruleset.includedRuleSets += @(@{ "action" = "Default" "path" = Get-BcContainerPath -containerName $containerName -path $appSourceRulesetFile }) $RuleSetFile = Join-Path $folder "run-alpipeline.ruleset.json" $ruleset | ConvertTo-Json -Depth 99 | Set-Content $rulesetFile } else { Write-Host "Using custom ruleset" } $CopParameters += @{ "ruleset" = $rulesetFile } } } if (($bcAuthContext) -and $testApp -and ($enablePerTenantExtensionCop -or $enableAppSourceCop)) { Write-Host -ForegroundColor Yellow "WARNING: A Test App cannot be published to production tenants online" } $appJsonFile = Join-Path $folder "app.json" $appJsonChanges = $false $appJson = [System.IO.File]::ReadAllLines($appJsonFile) | ConvertFrom-Json if ($appVersion -or $appBuild -or $appRevision) { if ($appVersion) { $version = [System.Version]"$($appVersion).$($appBuild).$($appRevision)" } else { $appJsonVersion = [System.Version]$appJson.Version if ($appBuild -eq -1) { $version = [System.Version]::new($appJsonVersion.Major, $appJsonVersion.Minor, $appJsonVersion.Build, $appRevision) } else { $version = [System.Version]::new($appJsonVersion.Major, $appJsonVersion.Minor, $appBuild, $appRevision) } } Write-Host "Using Version $version" $appJson.version = "$version" $appJsonChanges = $true } try { if ($app -and $appJson.ShowMyCode) { $warningsToShow += "NOTE: The app in $folder has ShowMyCode set to true. This means that people will be able to debug and see the source code of your app. (see https://aka.ms/showMyCode)" } } catch {} $bcVersion = [System.Version]$artifactUrl.Split('/')[4] if($app) { $runtime = -1 if ($appJson.psobject.Properties.name -eq "runtime") { $runtime = [double]$appJson.runtime } if(($applicationInsightsConnectionString) -and (($runtime -ge 7.2) -or (($runtime -eq -1) -and ($bcVersion -ge [System.Version]"18.2")))) { if ($appJson.psobject.Properties.name -eq "applicationInsightsConnectionString") { $appJson.applicationInsightsConnectionString = $applicationInsightsConnectionString } else { Add-Member -InputObject $appJson -MemberType NoteProperty -Name "applicationInsightsConnectionString" -Value $applicationInsightsConnectionString } $appJsonChanges = $true } elseif($applicationInsightsKey) { if ($appJson.psobject.Properties.name -eq "applicationInsightskey") { $appJson.applicationInsightsKey = $applicationInsightsKey } else { Add-Member -InputObject $appJson -MemberType NoteProperty -Name "applicationInsightsKey" -Value $applicationInsightsKey } $appJsonChanges = $true } } if ($appJsonChanges) { $appJsonContent = $appJson | ConvertTo-Json -Depth 99 [System.IO.File]::WriteAllLines($appJsonFile, $appJsonContent) } if ($useDevEndpoint) { $appPackagesFolder = Join-Path $folder ".alPackages" $appOutputFolder = $folder } else { $appPackagesFolder = $packagesFolder $appOutputFolder = $outputFolder $Parameters += @{ "CopyAppToSymbolsFolder" = $true } } if ($useCompilerFolder) { $Parameters += @{ "compilerFolder" = $compilerFolder } } else { $Parameters += @{ "containerName" = $containerName "tenant" = $tenant "credential" = $credential "CopySymbolsFromContainer" = $CopySymbolsFromContainer } } $Parameters += @{ "appProjectFolder" = $folder "appOutputFolder" = $appOutputFolder "appSymbolsFolder" = $appPackagesFolder "AzureDevOps" = $azureDevOps "GitHubActions" = $gitHubActions "preProcessorSymbols" = $preProcessorSymbols "generatecrossreferences" = $generatecrossreferences "updateDependencies" = $UpdateDependencies "features" = $features "generateErrorLog" = $generateErrorLog } if ($buildOutputFile) { $parameters.OutputTo = { Param($line) Write-Host $line if ($line -like "$($folder)*") { Add-Content -Path $buildOutputFile -Value $line.SubString($folder.Length+1) -Encoding UTF8 } else { Add-Content -Path $buildOutputFile -Value $line -Encoding UTF8 } } } if ($app) { if (!$previousAppsCopied) { $previousAppsCopied = $true $AppList = @() $previousAppVersions = @{} if ($previousApps) { Write-Host "Copying previous apps to packages folder" $appList = CopyAppFilesToFolder -appFiles $previousApps -folder $appPackagesFolder $previousApps = Sort-AppFilesByDependencies -appFiles $appList -containerName $containerName $previousApps | ForEach-Object { $appFile = $_ if (Test-BcContainer -containerName $containerName) { $appInfo = Invoke-ScriptInBcContainer -containerName $containerName -scriptblock { param($appFile) Get-NavAppInfo -Path $appFile } -argumentList (Get-BcContainerPath -containerName $containerName -path $appFile) $appId = $appInfo.AppId } else { $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) ([Guid]::NewGuid().ToString()) try { Extract-AppFileToFolder -appFilename $appFile -appFolder $tmpFolder -generateAppJson 6> $null $appJsonFile = Join-Path $tmpFolder "app.json" $appInfo = [System.IO.File]::ReadAllLines($appJsonFile) | ConvertFrom-Json $appId = $appInfo.Id } catch { if ($_.exception.message -eq "You cannot extract a runtime package") { throw "AppFile $appFile is a runtime package. You will have to specify a running container in containerName in order to analyze dependencies between runtime packages" } else { throw "Unable to extract and analyze appFile $appFile" } } finally { Remove-Item $tmpFolder -Recurse -Force -ErrorAction SilentlyContinue } } Write-Host "$($appInfo.Publisher)_$($appInfo.Name) = $($appInfo.Version.ToString())" $previousAppVersions += @{ "$($appInfo.Publisher)_$($appInfo.Name)" = $appInfo.Version.ToString() } $previousAppInfos += @(@{ "AppId" = $appId.ToLowerInvariant() "Publisher" = $appInfo.Publisher "Name" = $appInfo.Name "Version" = $appInfo.Version } ) } } } } if ($enableAppSourceCop -and $app) { $appSourceCopJson = @{} $saveit = $false if ($AppSourceCopMandatoryAffixes) { $appSourceCopJson += @{ "mandatoryAffixes" = @()+$AppSourceCopMandatoryAffixes } $saveit = $true } if ($AppSourceCopSupportedCountries) { $appSourceCopJson += @{ "supportedCountries" = @()+$AppSourceCopSupportedCountries } $saveit = $true } if ($ObsoleteTagMinAllowedMajorMinor) { $appSourceCopJson += @{ "obsoleteTagMinAllowedMajorMinor" = $ObsoleteTagMinAllowedMajorMinor } $saveit = $true } if ($previousAppVersions.ContainsKey("$($appJson.Publisher)_$($appJson.Name)")) { $appSourceCopJson += @{ "Publisher" = $appJson.Publisher "Name" = $appJson.Name "Version" = $previousAppVersions."$($appJson.Publisher)_$($appJson.Name)" } $saveit = $true } $appSourceCopJsonFile = Join-Path $folder "AppSourceCop.json" if ($saveit) { Write-Host "Creating AppSourceCop.json for validation" $appSourceCopJson | ConvertTo-Json -Depth 99 | Set-Content $appSourceCopJsonFile Write-Host "AppSourceCop.json content:" $appSourceCopJson | ConvertTo-Json -Depth 99 | Out-Host } else { if (Test-Path $appSourceCopJsonFile) { Remove-Item $appSourceCopJsonFile -force } } } $appType = switch ($true) { $app { "app" } $testApp { "testApp" } $bcptTestApp { "bcptApp" } Default { "app" } } $Parameters += @{ "sourceRepositoryUrl" = $sourceRepositoryUrl "sourceCommit" = $sourceCommit "buildBy" = $buildBy "buildUrl" = $buildUrl } $compilationParams = $Parameters + $CopParameters # Run pre-compile script if specified if($PreCompileApp) { Write-Host "Running custom pre-compilation script..." Invoke-Command -ScriptBlock $PreCompileApp -ArgumentList $appType, ([ref] $compilationParams) } try { Write-Host "`nCompiling $($compilationParams.appProjectFolder)" if ($useCompilerFolder) { $appFile = Compile-AppWithBcCompilerFolder @compilationParams } else { $appFile = Invoke-Command -ScriptBlock $CompileAppInBcContainer -ArgumentList $compilationParams } } catch { if ($escapeFromCops) { Write-Host "Retrying without Cops" # Remove Cops parameters $compilationParamsCopy = $compilationParams.Clone() $compilationParamsCopy.Keys | Where-Object {$_ -in $CopParameters.Keys} | ForEach-Object { $compilationParams.Remove($_) } if ($useCompilerFolder) { $appFile = Compile-AppWithBcCompilerFolder @compilationParams } else { $appFile = Invoke-Command -ScriptBlock $CompileAppInBcContainer -ArgumentList $compilationParams } } else { throw $_ } } finally { # Copy error logs to build artifact folder if($generateErrorLog -and $buildArtifactFolder) { # Define destination folder for error logs $destFolder = Join-Path $buildArtifactFolder "ErrorLogs" if (!(Test-Path $destFolder -PathType Container)) { New-Item $destFolder -ItemType Directory | Out-Null } $errorLogFile = Join-Path $appOutputFolder '*.errorLog.json' -Resolve -ErrorAction Ignore if($errorLogFile) { Write-Host "Copying error logs to $destFolder" Copy-Item $errorLogFile $destFolder -Force } } } # Run post-compile script if specified if($PostCompileApp) { Write-Host "Running custom post-compilation script..." Invoke-Command -ScriptBlock $PostCompileApp -ArgumentList $appFile, $appType, $compilationParams } if ($useDevEndpoint) { $Parameters = @{ "containerName" = $containerName "tenant" = $tenant "credential" = $credential "appFile" = $appFile "skipVerification" = $true "sync" = $true "install" = $true "useDevEndpoint" = $useDevEndpoint } if ($bcAuthContext) { $Parameters += @{ "bcAuthContext" = $bcAuthContext "environment" = $environment } } if (!$doNotPublishApps) { Invoke-Command -ScriptBlock $PublishBcContainerApp -ArgumentList $Parameters } if ($compilerFolder) { Copy-AppFilesToCompilerFolder -compilerFolder $compilerFolder -appFiles $Parameters.appFile } if ($updateLaunchJson) { $launchJsonFile = Join-Path $folder ".vscode\launch.json" if ($bcAuthContext) { $launchSettings = [ordered]@{ "type" = 'al' "request" = 'launch' "name" = $updateLaunchJson "environmentType" = "Sandbox" "environmentName" = $environment } } else { $config = Get-BcContainerServerConfiguration $containerName $webUri = [Uri]::new($config.PublicWebBaseUrl) try { $inspect = docker inspect $containerName | ConvertFrom-Json if ($inspect.config.Labels.'traefik.enable' -eq 'true') { $server = "$($inspect.config.Labels.'traefik.protocol')://$($webUri.Authority)" if ($inspect.config.Labels.'traefik.protocol' -eq 'http') { $port = 80 } else { $port = 443 } $serverInstance = "$($containerName)dev" } else { $server = "$($webUri.Scheme)://$($webUri.Authority)" $port = $config.DeveloperServicesPort $serverInstance = $webUri.AbsolutePath.Trim('/') } } catch { $server = "$($webUri.Scheme)://$($webUri.Authority)" $port = $config.DeveloperServicesPort $serverInstance = $webUri.AbsolutePath.Trim('/') } $launchSettings = [ordered]@{ "type" = 'al' "request" = 'launch' "name" = $updateLaunchJson "server" = $Server "serverInstance" = $serverInstance "port" = [int]$Port "tenant" = $tenant "authentication" = $auth } } UpdateLaunchJson -launchJsonFile $launchJsonFile -launchSettings $launchSettings } } if ($bcptTestApp) { $bcptTestApps += $appFile } if ($testApp) { $testApps += $appFile } if ($app) { $apps += $appFile $appsFolder += @{ "$appFile" = $folder } } } } | ForEach-Object { if ($appFolders -or $testFolders -or $bcptTestFolders) { Write-Host -ForegroundColor Yellow "`nCompiling apps$measureText took $([int]$_.TotalSeconds) seconds" } } if ($gitHubActions) { Write-Host "::endgroup::" } if ($signApps -and !$useDevEndpoint -and !$useCompilerFolder) { if ($gitHubActions) { Write-Host "::group::Signing apps" } Write-Host -ForegroundColor Yellow @' _____ _ _ / ____(_) (_) | (__ _ __ _ _ __ _ _ __ __ _ __ _ _ __ _ __ ___ \___ \| |/ _` | '_ \| | '_ \ / _` | / _` | '_ \| '_ \/ __| ____) | | (_| | | | | | | | | (_| | | (_| | |_) | |_) \__ \ |_____/|_|\__, |_| |_|_|_| |_|\__, | \__,_| .__/| .__/|___/ __/ | __/ | | | | | |___/ |___/ |_| |_| '@ Measure-Command { $apps | ForEach-Object { $Parameters = @{ "containerName" = $containerName "appFile" = $_ "pfxFile" = $codeSignCertPfxFile "pfxPassword" = $codeSignCertPfxPassword "importCertificate" = $codeSignCertIsSelfSigned -or $isInsideContainer } Invoke-Command -ScriptBlock $SignBcContainerApp -ArgumentList $Parameters } } | ForEach-Object { Write-Host -ForegroundColor Yellow "`nSigning apps took $([int]$_.TotalSeconds) seconds" } if ($gitHubActions) { Write-Host "::endgroup::" } } } $previousAppsInstalled = @() if (!$useDevEndpoint) { if ((!$doNotPerformUpgrade) -and ($previousApps)) { if ($gitHubActions) { Write-Host "::group::Installing previous apps" } Write-Host -ForegroundColor Yellow @' _____ _ _ _ _ _ |_ _| | | | | (_) (_) | | _ __ ___| |_ __ _| | |_ _ __ __ _ _ __ _ __ _____ ___ ___ _ _ ___ __ _ _ __ _ __ ___ | | | '_ \/ __| __/ _` | | | | '_ \ / _` | | '_ \| '__/ _ \ \ / / |/ _ \| | | / __| / _` | '_ \| '_ \/ __| _| |_| | | \__ \ || (_| | | | | | | | (_| | | |_) | | | __/\ V /| | (_) | |_| \__ \ | (_| | |_) | |_) \__ \ |_____|_| |_|___/\__\__,_|_|_|_|_| |_|\__, | | .__/|_| \___| \_/ |_|\___/ \__,_|___/ \__,_| .__/| .__/|___/ __/ | | | | | | | |___/ |_| |_| |_| '@ Measure-Command { if ($testCountry) { Write-Host -ForegroundColor Yellow "Installing previous apps for additional country $testCountry" } if ($previousApps) { $previousApps | ForEach-Object{ $Parameters = @{ "containerName" = $containerName "tenant" = $tenant "credential" = $credential "appFile" = $_ "skipVerification" = $true "sync" = $true "install" = $true "useDevEndpoint" = $false } if ($bcAuthContext) { $Parameters += @{ "bcAuthContext" = $bcAuthContext "environment" = $environment "replacePackageId" = $true } } if (!$doNotPublishApps) { Invoke-Command -ScriptBlock $PublishBcContainerApp -ArgumentList $Parameters } } if ($bcAuthContext) { Write-Host "Wait for online environment to process apps" Start-Sleep -Seconds 30 } } } | ForEach-Object { Write-Host -ForegroundColor Yellow "`nInstalling apps took $([int]$_.TotalSeconds) seconds" } if ($gitHubActions) { Write-Host "::endgroup::" } } if ((!$doNotPublishApps) -and ($apps+$testApps+$bcptTestApps)) { if ($gitHubActions) { Write-Host "::group::Publishing apps" } Write-Host -ForegroundColor Yellow @' _____ _ _ _ _ _ | __ \ | | | (_) | | (_) | |__) | _| |__ | |_ ___| |__ _ _ __ __ _ __ _ _ __ _ __ ___ | ___/ | | | '_ \| | / __| '_ \| | '_ \ / _` | / _` | '_ \| '_ \/ __| | | | |_| | |_) | | \__ \ | | | | | | | (_| | | (_| | |_) | |_) \__ \ |_| \__,_|_.__/|_|_|___/_| |_|_|_| |_|\__, | \__,_| .__/| .__/|___/ __/ | | | | | |___/ |_| |_| '@ Measure-Command { if ($testCountry) { Write-Host -ForegroundColor Yellow "Publishing apps for additional country $testCountry" } $installedApps = @() if (!($bcAuthContext)) { $Parameters = @{ "containerName" = $containerName "tenant" = $tenant } $installedApps = Invoke-Command -ScriptBlock $GetBcContainerAppInfo -ArgumentList $Parameters } $upgradedApps = @() $apps | ForEach-Object { $folder = $appsFolder[$_] $appJsonFile = Join-Path $folder "app.json" $appJson = [System.IO.File]::ReadAllLines($appJsonFile) | ConvertFrom-Json $upgradedApps += @($appJson.Id.ToLowerInvariant()) $installedApp = $false if ($installedApps | Where-Object { $_.AppId -eq $appJson.Id }) { $installedApp = $true } $Parameters = @{ "containerName" = $containerName "tenant" = $tenant "credential" = $credential "appFile" = $_ "skipVerification" = !$signApps "sync" = $true "install" = !$installedApp "upgrade" = $installedApp } if ($bcAuthContext) { $Parameters += @{ "bcAuthContext" = $bcAuthContext "environment" = $environment } } if (!$doNotPublishApps) { Invoke-Command -ScriptBlock $PublishBcContainerApp -ArgumentList $Parameters } } if ($uninstallRemovedApps -and !$doNotPerformUpgrade) { [array]::Reverse($previousAppInfos) $previousAppInfos | ForEach-Object { if (!$upgradedApps.Contains($_.AppId)) { Write-Host "Uninstalling $($_.Name) version $($_.Version) from $($_.Publisher)" $Parameters = @{ "containerName" = $containerName "tenant" = $tenant "name" = $_.Name "publisher" = $_.Publisher "version" = $_.Version "uninstall" = $true } if (!$doNotPublishApps) { Invoke-Command -ScriptBlock $UnPublishBcContainerApp -ArgumentList $Parameters } } } } $testApps+$bcptTestApps | ForEach-Object { $Parameters = @{ "containerName" = $containerName "tenant" = $tenant "credential" = $credential "appFile" = $_ "skipVerification" = $true "sync" = $true "install" = $true } if ($bcAuthContext) { $Parameters += @{ "bcAuthContext" = $bcAuthContext "environment" = $environment } } if (!$doNotPublishApps) { Invoke-Command -ScriptBlock $PublishBcContainerApp -ArgumentList $Parameters } } } | ForEach-Object { Write-Host -ForegroundColor Yellow "`nPublishing apps took $([int]$_.TotalSeconds) seconds" } if ($gitHubActions) { Write-Host "::endgroup::" } } } if (!($doNotRunTests -and $doNotRunBcptTests)) { if ($ImportTestDataInBcContainer) { if ($gitHubActions) { Write-Host "::group::Importing test data" } Write-Host -ForegroundColor Yellow @' _____ _ _ _ _ _ _ |_ _| | | (_) | | | | | | | | | | _ __ ___ _ __ ___ _ __| |_ _ _ __ __ _ | |_ ___ ___| |_ __| | __ _| |_ __ _ | | | '_ ` _ \| '_ \ / _ \| '__| __| | '_ \ / _` | | __/ _ \/ __| __| / _` |/ _` | __/ _` | _| |_| | | | | | |_) | (_) | | | |_| | | | | (_| | | || __/\__ \ |_ | (_| | (_| | || (_| | |_____|_| |_| |_| .__/ \___/|_| \__|_|_| |_|\__, | \__\___||___/\__| \__,_|\__,_|\__\__,_| | | __/ | |_| |___/ '@ if (!$enableTaskScheduler) { Invoke-ScriptInBcContainer -containerName $containerName -scriptblock { Write-Host "Enabling Task Scheduler to load configuration packages" Set-NAVServerConfiguration -ServerInstance $ServerInstance -KeyName "EnableTaskScheduler" -KeyValue "True" -WarningAction SilentlyContinue Set-NAVServerInstance -ServerInstance $ServerInstance -Restart while (Get-NavTenant $serverInstance | Where-Object { $_.State -eq "Mounting" }) { Start-Sleep -Seconds 1 } } } $Parameters = @{ "containerName" = $containerName "tenant" = $tenant "credential" = $credential } Invoke-Command -ScriptBlock $ImportTestDataInBcContainer -ArgumentList $Parameters if (!$enableTaskScheduler) { Invoke-ScriptInBcContainer -containerName $containerName -scriptblock { Write-Host "Disabling Task Scheduler again" Set-NAVServerConfiguration -ServerInstance $ServerInstance -KeyName "EnableTaskScheduler" -KeyValue "False" -WarningAction SilentlyContinue Set-NAVServerInstance -ServerInstance $ServerInstance -Restart while (Get-NavTenant $serverInstance | Where-Object { $_.State -eq "Mounting" }) { Start-Sleep -Seconds 1 } } } if ($gitHubActions) { Write-Host "::endgroup::" } } $allPassed = $true $resultsFile = Join-Path ([System.IO.Path]::GetDirectoryName($testResultsFile)) "$([System.IO.Path]::GetFileNameWithoutExtension($testResultsFile))$testCountry.xml" $bcptResultsFile = Join-Path ([System.IO.Path]::GetDirectoryName($bcptTestResultsFile)) "$([System.IO.Path]::GetFileNameWithoutExtension($bcptTestResultsFile))$testCountry.json" if (!$doNotRunTests -and (($testFolders) -or ($installTestApps))) { if ($gitHubActions) { Write-Host "::group::Running tests" } Write-Host -ForegroundColor Yellow @' _____ _ _ _ | __ \ (_) | | | | | |__) | _ _ __ _ __ _ _ __ __ _ | |_ ___ ___| |_ ___ | _ / | | | '_ \| '_ \| | '_ \ / _` | | __/ _ \/ __| __/ __| | | \ \ |_| | | | | | | | | | | | (_| | | || __/\__ \ |_\__ \ |_| \_\__,_|_| |_|_| |_|_|_| |_|\__, | \__\___||___/\__|___/ __/ | |___/ '@ Measure-Command { if ($testCountry) { Write-Host -ForegroundColor Yellow "Running Tests for additional country $testCountry" } $testAppIds = @{} $installTestApps | ForEach-Object { $appId = [Guid]::Empty if ([Guid]::TryParse($_, [ref] $appId)) { if ($testAppIds.ContainsKey($appId)) { Write-Host -ForegroundColor Red "$($appId) already exists in the list of apps to test!" } else { $testAppIds += @{ "$appId" = "" } } } else { $appFile = $_ if ($appFile -eq "$_".Trim('()')) { $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) ([Guid]::NewGuid().ToString()) try { $appList = CopyAppFilesToFolder -appFiles $_ -folder $tmpFolder $appList | ForEach-Object { $appFile = $_ $appFolder = "$($_).source" Extract-AppFileToFolder -appFilename $_ -appFolder $appFolder -generateAppJson $appJsonFile = Join-Path $appFolder "app.json" $appJson = [System.IO.File]::ReadAllLines($appJsonFile) | ConvertFrom-Json if ($testAppIds.ContainsKey($appJson.Id)) { Write-Host -ForegroundColor Red "$($appJson.Id) already exists in the list of apps to test! (do you have the same app twice in installTestApps?)" } else { $testAppIds += @{ "$($appJson.Id)" = "" } } } } catch { Write-Host -ForegroundColor Red "Cannot run tests in test app $([System.IO.Path]::GetFileName($appFile)), it might be a runtime package." } finally { Remove-Item $tmpFolder -Recurse -Force } } } } $testFolders | ForEach-Object { $appJson = [System.IO.File]::ReadAllLines((Join-Path $_ "app.json")) | ConvertFrom-Json if ($testAppIds.ContainsKey($appJson.Id)) { Write-Host -ForegroundColor Red "$($appJson.Id) already exists in the list of apps to test! (are you installing apps with the same ID as your test apps?)" $testAppIds."$($appJson.Id)" = $_ } else { $testAppIds += @{ "$($appJson.Id)" = $_ } } } $testAppIds.Keys | ForEach-Object { $disabledTests = @() $id = $_ $folder = $testAppIds."$id" if ($folder) { Write-Host "Running tests for App $id in $folder" } else { Write-Host "Running tests for App $id" } if ($folder) { Get-ChildItem -Path $folder -Filter "disabledTests.json" -Recurse | ForEach-Object { $disabledTestsStr = Get-Content $_.FullName -Raw -Encoding utf8 Write-Host "Disabled Tests:`n$disabledTestsStr" $disabledTests += ($disabledTestsStr | ConvertFrom-Json) } } Get-ChildItem -Path $baseFolder -Filter "$id.disabledTests.json" -Recurse | ForEach-Object { $disabledTestsStr = Get-Content $_.FullName -Raw -Encoding utf8 Write-Host "Disabled Tests:`n$disabledTestsStr" $disabledTests += ($disabledTestsStr | ConvertFrom-Json) } $Parameters = @{ "containerName" = $containerName "tenant" = $tenant "credential" = $credential "companyName" = $companyName "extensionId" = $id "disabledTests" = $disabledTests "AzureDevOps" = "$(if($azureDevOps){if($treatTestFailuresAsWarnings){'warning'}else{'error'}}else{'no'})" "GitHubActions" = "$(if($githubActions){if($treatTestFailuresAsWarnings){'warning'}else{'error'}}else{'no'})" "detailed" = $true "returnTrueIfAllPassed" = $true } if ($testResultsFormat -eq "XUnit") { $Parameters += @{ "XUnitResultFileName" = $resultsFile "AppendToXUnitResultFile" = $true } } else { $Parameters += @{ "JUnitResultFileName" = $resultsFile "AppendToJUnitResultFile" = $true } } if ($bcAuthContext) { $Parameters += @{ "bcAuthContext" = $bcAuthContext "environment" = $environment } } if (!(Invoke-Command -ScriptBlock $RunTestsInBcContainer -ArgumentList $Parameters)) { $allPassed = $false } } } | ForEach-Object { Write-Host -ForegroundColor Yellow "`nRunning tests took $([int]$_.TotalSeconds) seconds" } if ($buildArtifactFolder -and (Test-Path $resultsFile)) { Write-Host "Copying test results to output" Copy-Item -Path $resultsFile -Destination $buildArtifactFolder -Force } if ($gitHubActions) { Write-Host "::endgroup::" } } if (!$doNotRunBcptTests -and $bcptTestSuites) { if ($gitHubActions) { Write-Host "::group::Running BCPT tests" } Write-Host -ForegroundColor Yellow @' _____ _ ____ _____ _____ _______ _ _ | __ \ (_) | _ \ / ____| __ \__ __| | | | | | |__) | _ _ __ _ __ _ _ __ __ _ | |_) | | | |__) | | | | |_ ___ ___| |_ ___ | _ / | | | '_ \| '_ \| | '_ \ / _` | | _ <| | | ___/ | | | __/ _ \/ __| __/ __| | | \ \ |_| | | | | | | | | | | | (_| | | |_) | |____| | | | | || __/\__ \ |_\__ \ |_| \_\__,_|_| |_|_| |_|_|_| |_|\__, | |____/ \_____|_| |_| \__\___||___/\__|___/ __/ | |___/ '@ Measure-Command { if ($testCountry) { Write-Host -ForegroundColor Yellow "Running BCPT Tests for additional country $testCountry" } $bcptTestSuites | ForEach-Object { $Parameters = @{ "containerName" = $containerName "tenant" = $tenant "credential" = $credential "companyName" = $companyName "connectFromHost" = $true "BCPTsuite" = [System.IO.File]::ReadAllLines($_) | ConvertFrom-Json } if ($bcAuthContext) { throw "BCPT Tests are not supported on cloud pipelines yet!" } $result = Invoke-Command -ScriptBlock $RunBCPTTestsInBcContainer -ArgumentList $Parameters Write-Host "Saving bcpt test results to $bcptResultsFile" $result | ConvertTo-Json -Depth 99 | Set-Content $bcptResultsFile } } | ForEach-Object { Write-Host -ForegroundColor Yellow "`nRunning BCPT tests took $([int]$_.TotalSeconds) seconds" } if ($buildArtifactFolder -and (Test-Path $bcptResultsFile)) { Write-Host "Copying bcpt test results to output" Copy-Item -Path $bcptResultsFile -Destination $buildArtifactFolder -Force } if ($gitHubActions) { Write-Host "::endgroup::" } } if (($gitLab -or $gitHubActions) -and !$allPassed) { if (-not $treatTestFailuresAsWarnings) { throw "There are test failures!" } } } } if ($buildArtifactFolder) { if ($gitHubActions) { Write-Host "::group::Copy to build artifacts" } Write-Host -ForegroundColor Yellow @' _____ _ _ _ _ _ _ _ __ _ / ____| | | | | (_) | | | | | (_)/ _| | | | | ___ _ __ _ _ | |_ ___ | |__ _ _ _| | __| | __ _ _ __| |_ _| |_ __ _ ___| |_ ___ | | / _ \| '_ \| | | | | __/ _ \ | '_ \| | | | | |/ _` | / _` | '__| __| | _/ _` |/ __| __/ __| | |___| (_) | |_) | |_| | | || (_) | | |_) | |_| | | | (_| | | (_| | | | |_| | || (_| | (__| |_\__ \ \______\___/| .__/ \__, | \__\___/ |_.__/ \__,_|_|_|\__,_| \__,_|_| \__|_|_| \__,_|\___|\__|___/ | | __/ | |_| |___/ '@ Measure-Command { $destFolder = Join-Path $buildArtifactFolder "Apps" if (!(Test-Path $destFolder -PathType Container)) { New-Item $destFolder -ItemType Directory | Out-Null } $apps | ForEach-Object { Copy-Item -Path $_ -Destination $destFolder -Force } $destFolder = Join-Path $buildArtifactFolder "TestApps" if (!(Test-Path $destFolder -PathType Container)) { New-Item $destFolder -ItemType Directory | Out-Null } $testApps | ForEach-Object { Copy-Item -Path $_ -Destination $destFolder -Force } if ($createRuntimePackages) { $destFolder = Join-Path $buildArtifactFolder "RuntimePackages" if (!(Test-Path $destFolder -PathType Container)) { New-Item $destFolder -ItemType Directory | Out-Null } $no = 1 $apps | ForEach-Object { $appFile = $_ $tempRuntimeAppFile = "$($appFile.TrimEnd('.app')).runtime.app" $folder = $appsFolder[$appFile] $appJson = [System.IO.File]::ReadAllLines((Join-Path $folder "app.json")) | ConvertFrom-Json Write-Host "Getting Runtime Package for $([System.IO.Path]::GetFileName($appFile))" $Parameters = @{ "containerName" = $containerName "tenant" = $tenant "appName" = $appJson.name "appVersion" = $appJson.Version "publisher" = $appJson.Publisher "appFile" = $tempRuntimeAppFile } Invoke-Command -ScriptBlock $GetBcContainerAppRuntimePackage -ArgumentList $Parameters if ($signApps) { Write-Host "Signing runtime package" $Parameters = @{ "containerName" = $containerName "appFile" = $tempRuntimeAppFile "pfxFile" = $codeSignCertPfxFile "pfxPassword" = $codeSignCertPfxPassword } Invoke-Command -ScriptBlock $SignBcContainerApp -ArgumentList $Parameters } Write-Host "Copying runtime package to build artifact" Copy-Item -Path $tempRuntimeAppFile -Destination (Join-Path $destFolder "$($no.ToString('00')) - $([System.IO.Path]::GetFileName($tempRuntimeAppFile))" ) -Force $no++ } } Write-Host "Files in build artifacts folder:" Get-ChildItem $buildArtifactFolder -Recurse | Where-Object {!$_.PSIsContainer} | ForEach-Object { Write-Host "$($_.FullName.Substring($buildArtifactFolder.Length+1)) ($($_.Length) bytes)" } } | ForEach-Object { Write-Host -ForegroundColor Yellow "`nCopying to Build Artifacts took $([int]$_.TotalSeconds) seconds" } if ($gitHubActions) { Write-Host "::endgroup::" } } } catch { $err = $_ } finally { $progressPreference = $prevProgressPreference } if (!$keepContainer) { if ($gitHubActions) { Write-Host "::group::Removing container" } if (!($err)) { Write-Host -ForegroundColor Yellow @' _____ _ _ _ | __ \ (_) | | (_) | |__) |___ _ __ ___ _____ ___ _ __ __ _ ___ ___ _ __ | |_ __ _ _ _ __ ___ _ __ | _ // _ \ '_ ` _ \ / _ \ \ / / | '_ \ / _` | / __/ _ \| '_ \| __/ _` | | '_ \ / _ \ '__| | | \ \ __/ | | | | | (_) \ V /| | | | | (_| | | (_| (_) | | | | || (_| | | | | | __/ | |_| \_\___|_| |_| |_|\___/ \_/ |_|_| |_|\__, | \___\___/|_| |_|\__\__,_|_|_| |_|\___|_| __/ | |___/ '@ } Measure-Command { if ($useCompilerFolder -and $compilerFolder) { Remove-BcCompilerFolder -compilerFolder $compilerFolder } if (!$doNotPublishApps) { if (!$filesOnly -and $containerEventLogFile) { try { Write-Host "Get Event Log from container" $Parameters = @{ "containerName" = $containerName "doNotOpen" = $true } $eventlogFile = Invoke-Command -ScriptBlock $GetBcContainerEventLog -ArgumentList $Parameters Copy-Item -Path $eventLogFile -Destination $containerEventLogFile } catch {} } $Parameters = @{ "containerName" = $containerName } Invoke-Command -ScriptBlock $RemoveBcContainer -ArgumentList $Parameters } } | ForEach-Object { if (!($err)) { Write-Host -ForegroundColor Yellow "`nRemoving container took $([int]$_.TotalSeconds) seconds" } } if ($gitHubActions) { Write-Host "::endgroup::" } } if ($warningsToShow) { ($warningsToShow -join "`n") | Write-Host -ForegroundColor Yellow } if ($err) { throw $err } } | ForEach-Object { Write-Host -ForegroundColor Yellow "`nAL Pipeline finished in $([int]$_.TotalSeconds) seconds" } } catch { TrackException -telemetryScope $telemetryScope -errorRecord $_ throw } finally { TrackTrace -telemetryScope $telemetryScope } } Export-ModuleMember -Function Run-AlPipeline # SIG # Begin signature block # MIIr3wYJKoZIhvcNAQcCoIIr0DCCK8wCAQExDzANBglghkgBZQMEAgEFADB5Bgor # BgEEAYI3AgEEoGswaTA0BgorBgEEAYI3AgEeMCYCAwEAAAQQH8w7YFlLCE63JNLG # KX7zUQIBAAIBAAIBAAIBAAIBADAxMA0GCWCGSAFlAwQCAQUABCB+N0Q6o/DrOt0O # YF6KQvxC7ThQAt5yTCbDJ571xx92raCCJPcwggVvMIIEV6ADAgECAhBI/JO0YFWU # jTanyYqJ1pQWMA0GCSqGSIb3DQEBDAUAMHsxCzAJBgNVBAYTAkdCMRswGQYDVQQI # DBJHcmVhdGVyIE1hbmNoZXN0ZXIxEDAOBgNVBAcMB1NhbGZvcmQxGjAYBgNVBAoM # EUNvbW9kbyBDQSBMaW1pdGVkMSEwHwYDVQQDDBhBQUEgQ2VydGlmaWNhdGUgU2Vy # dmljZXMwHhcNMjEwNTI1MDAwMDAwWhcNMjgxMjMxMjM1OTU5WjBWMQswCQYDVQQG # EwJHQjEYMBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMS0wKwYDVQQDEyRTZWN0aWdv # IFB1YmxpYyBDb2RlIFNpZ25pbmcgUm9vdCBSNDYwggIiMA0GCSqGSIb3DQEBAQUA # A4ICDwAwggIKAoICAQCN55QSIgQkdC7/FiMCkoq2rjaFrEfUI5ErPtx94jGgUW+s # hJHjUoq14pbe0IdjJImK/+8Skzt9u7aKvb0Ffyeba2XTpQxpsbxJOZrxbW6q5KCD # J9qaDStQ6Utbs7hkNqR+Sj2pcaths3OzPAsM79szV+W+NDfjlxtd/R8SPYIDdub7 # P2bSlDFp+m2zNKzBenjcklDyZMeqLQSrw2rq4C+np9xu1+j/2iGrQL+57g2extme # me/G3h+pDHazJyCh1rr9gOcB0u/rgimVcI3/uxXP/tEPNqIuTzKQdEZrRzUTdwUz # T2MuuC3hv2WnBGsY2HH6zAjybYmZELGt2z4s5KoYsMYHAXVn3m3pY2MeNn9pib6q # RT5uWl+PoVvLnTCGMOgDs0DGDQ84zWeoU4j6uDBl+m/H5x2xg3RpPqzEaDux5mcz # mrYI4IAFSEDu9oJkRqj1c7AGlfJsZZ+/VVscnFcax3hGfHCqlBuCF6yH6bbJDoEc # QNYWFyn8XJwYK+pF9e+91WdPKF4F7pBMeufG9ND8+s0+MkYTIDaKBOq3qgdGnA2T # OglmmVhcKaO5DKYwODzQRjY1fJy67sPV+Qp2+n4FG0DKkjXp1XrRtX8ArqmQqsV/ # AZwQsRb8zG4Y3G9i/qZQp7h7uJ0VP/4gDHXIIloTlRmQAOka1cKG8eOO7F/05QID # AQABo4IBEjCCAQ4wHwYDVR0jBBgwFoAUoBEKIz6W8Qfs4q8p74Klf9AwpLQwHQYD # VR0OBBYEFDLrkpr/NZZILyhAQnAgNpFcF4XmMA4GA1UdDwEB/wQEAwIBhjAPBgNV # HRMBAf8EBTADAQH/MBMGA1UdJQQMMAoGCCsGAQUFBwMDMBsGA1UdIAQUMBIwBgYE # VR0gADAIBgZngQwBBAEwQwYDVR0fBDwwOjA4oDagNIYyaHR0cDovL2NybC5jb21v # ZG9jYS5jb20vQUFBQ2VydGlmaWNhdGVTZXJ2aWNlcy5jcmwwNAYIKwYBBQUHAQEE # KDAmMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5jb21vZG9jYS5jb20wDQYJKoZI # hvcNAQEMBQADggEBABK/oe+LdJqYRLhpRrWrJAoMpIpnuDqBv0WKfVIHqI0fTiGF # OaNrXi0ghr8QuK55O1PNtPvYRL4G2VxjZ9RAFodEhnIq1jIV9RKDwvnhXRFAZ/ZC # J3LFI+ICOBpMIOLbAffNRk8monxmwFE2tokCVMf8WPtsAO7+mKYulaEMUykfb9gZ # pk+e96wJ6l2CxouvgKe9gUhShDHaMuwV5KZMPWw5c9QLhTkg4IUaaOGnSDip0TYl # d8GNGRbFiExmfS9jzpjoad+sPKhdnckcW67Y8y90z7h+9teDnRGWYpquRRPaf9xH # +9/DUp/mBlXpnYzyOmJRvOwkDynUWICE5EV7WtgwggWNMIIEdaADAgECAhAOmxiO # +dAt5+/bUOIIQBhaMA0GCSqGSIb3DQEBDAUAMGUxCzAJBgNVBAYTAlVTMRUwEwYD # VQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xJDAi # BgNVBAMTG0RpZ2lDZXJ0IEFzc3VyZWQgSUQgUm9vdCBDQTAeFw0yMjA4MDEwMDAw # MDBaFw0zMTExMDkyMzU5NTlaMGIxCzAJBgNVBAYTAlVTMRUwEwYDVQQKEwxEaWdp # Q2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20xITAfBgNVBAMTGERp # Z2lDZXJ0IFRydXN0ZWQgUm9vdCBHNDCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCC # AgoCggIBAL/mkHNo3rvkXUo8MCIwaTPswqclLskhPfKK2FnC4SmnPVirdprNrnsb # hA3EMB/zG6Q4FutWxpdtHauyefLKEdLkX9YFPFIPUh/GnhWlfr6fqVcWWVVyr2iT # cMKyunWZanMylNEQRBAu34LzB4TmdDttceItDBvuINXJIB1jKS3O7F5OyJP4IWGb # NOsFxl7sWxq868nPzaw0QF+xembud8hIqGZXV59UWI4MK7dPpzDZVu7Ke13jrclP # XuU15zHL2pNe3I6PgNq2kZhAkHnDeMe2scS1ahg4AxCN2NQ3pC4FfYj1gj4QkXCr # VYJBMtfbBHMqbpEBfCFM1LyuGwN1XXhm2ToxRJozQL8I11pJpMLmqaBn3aQnvKFP # ObURWBf3JFxGj2T3wWmIdph2PVldQnaHiZdpekjw4KISG2aadMreSx7nDmOu5tTv # kpI6nj3cAORFJYm2mkQZK37AlLTSYW3rM9nF30sEAMx9HJXDj/chsrIRt7t/8tWM # cCxBYKqxYxhElRp2Yn72gLD76GSmM9GJB+G9t+ZDpBi4pncB4Q+UDCEdslQpJYls # 5Q5SUUd0viastkF13nqsX40/ybzTQRESW+UQUOsxxcpyFiIJ33xMdT9j7CFfxCBR # a2+xq4aLT8LWRV+dIPyhHsXAj6KxfgommfXkaS+YHS312amyHeUbAgMBAAGjggE6 # MIIBNjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTs1+OC0nFdZEzfLmc/57qY # rhwPTzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYunpyGd823IDzAOBgNVHQ8BAf8E # BAMCAYYweQYIKwYBBQUHAQEEbTBrMCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5k # aWdpY2VydC5jb20wQwYIKwYBBQUHMAKGN2h0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0 # LmNvbS9EaWdpQ2VydEFzc3VyZWRJRFJvb3RDQS5jcnQwRQYDVR0fBD4wPDA6oDig # NoY0aHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0QXNzdXJlZElEUm9v # dENBLmNybDARBgNVHSAECjAIMAYGBFUdIAAwDQYJKoZIhvcNAQEMBQADggEBAHCg # v0NcVec4X6CjdBs9thbX979XB72arKGHLOyFXqkauyL4hxppVCLtpIh3bb0aFPQT # SnovLbc47/T/gLn4offyct4kvFIDyE7QKt76LVbP+fT3rDB6mouyXtTP0UNEm0Mh # 65ZyoUi0mcudT6cGAxN3J0TU53/oWajwvy8LpunyNDzs9wPHh6jSTEAZNUZqaVSw # uKFWjuyk1T3osdz9HNj0d1pcVIxv76FQPfx2CWiEn2/K2yCNNWAcAgPLILCsWKAO # QGPFmCLBsln1VWvPJ6tsds5vIy30fnFqI2si/xK4VC0nftg62fC2h5b9W9FcrBjD # TZ9ztwGpn1eqXijiuZQwggYaMIIEAqADAgECAhBiHW0MUgGeO5B5FSCJIRwKMA0G # CSqGSIb3DQEBDAUAMFYxCzAJBgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExp # bWl0ZWQxLTArBgNVBAMTJFNlY3RpZ28gUHVibGljIENvZGUgU2lnbmluZyBSb290 # IFI0NjAeFw0yMTAzMjIwMDAwMDBaFw0zNjAzMjEyMzU5NTlaMFQxCzAJBgNVBAYT # AkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxKzApBgNVBAMTIlNlY3RpZ28g # UHVibGljIENvZGUgU2lnbmluZyBDQSBSMzYwggGiMA0GCSqGSIb3DQEBAQUAA4IB # jwAwggGKAoIBgQCbK51T+jU/jmAGQ2rAz/V/9shTUxjIztNsfvxYB5UXeWUzCxEe # AEZGbEN4QMgCsJLZUKhWThj/yPqy0iSZhXkZ6Pg2A2NVDgFigOMYzB2OKhdqfWGV # oYW3haT29PSTahYkwmMv0b/83nbeECbiMXhSOtbam+/36F09fy1tsB8je/RV0mIk # 8XL/tfCK6cPuYHE215wzrK0h1SWHTxPbPuYkRdkP05ZwmRmTnAO5/arnY83jeNzh # P06ShdnRqtZlV59+8yv+KIhE5ILMqgOZYAENHNX9SJDm+qxp4VqpB3MV/h53yl41 # aHU5pledi9lCBbH9JeIkNFICiVHNkRmq4TpxtwfvjsUedyz8rNyfQJy/aOs5b4s+ # ac7IH60B+Ja7TVM+EKv1WuTGwcLmoU3FpOFMbmPj8pz44MPZ1f9+YEQIQty/NQd/ # 2yGgW+ufflcZ/ZE9o1M7a5Jnqf2i2/uMSWymR8r2oQBMdlyh2n5HirY4jKnFH/9g # Rvd+QOfdRrJZb1sCAwEAAaOCAWQwggFgMB8GA1UdIwQYMBaAFDLrkpr/NZZILyhA # QnAgNpFcF4XmMB0GA1UdDgQWBBQPKssghyi47G9IritUpimqF6TNDDAOBgNVHQ8B # Af8EBAMCAYYwEgYDVR0TAQH/BAgwBgEB/wIBADATBgNVHSUEDDAKBggrBgEFBQcD # AzAbBgNVHSAEFDASMAYGBFUdIAAwCAYGZ4EMAQQBMEsGA1UdHwREMEIwQKA+oDyG # Omh0dHA6Ly9jcmwuc2VjdGlnby5jb20vU2VjdGlnb1B1YmxpY0NvZGVTaWduaW5n # Um9vdFI0Ni5jcmwwewYIKwYBBQUHAQEEbzBtMEYGCCsGAQUFBzAChjpodHRwOi8v # Y3J0LnNlY3RpZ28uY29tL1NlY3RpZ29QdWJsaWNDb2RlU2lnbmluZ1Jvb3RSNDYu # cDdjMCMGCCsGAQUFBzABhhdodHRwOi8vb2NzcC5zZWN0aWdvLmNvbTANBgkqhkiG # 9w0BAQwFAAOCAgEABv+C4XdjNm57oRUgmxP/BP6YdURhw1aVcdGRP4Wh60BAscjW # 4HL9hcpkOTz5jUug2oeunbYAowbFC2AKK+cMcXIBD0ZdOaWTsyNyBBsMLHqafvIh # rCymlaS98+QpoBCyKppP0OcxYEdU0hpsaqBBIZOtBajjcw5+w/KeFvPYfLF/ldYp # mlG+vd0xqlqd099iChnyIMvY5HexjO2AmtsbpVn0OhNcWbWDRF/3sBp6fWXhz7Dc # ML4iTAWS+MVXeNLj1lJziVKEoroGs9Mlizg0bUMbOalOhOfCipnx8CaLZeVme5yE # Lg09Jlo8BMe80jO37PU8ejfkP9/uPak7VLwELKxAMcJszkyeiaerlphwoKx1uHRz # NyE6bxuSKcutisqmKL5OTunAvtONEoteSiabkPVSZ2z76mKnzAfZxCl/3dq3dUNw # 4rg3sTCggkHSRqTqlLMS7gjrhTqBmzu1L90Y1KWN/Y5JKdGvspbOrTfOXyXvmPL6 # E52z1NZJ6ctuMFBQZH3pwWvqURR8AgQdULUvrxjUYbHHj95Ejza63zdrEcxWLDX6 # xWls/GDnVNueKjWUH3fTv1Y8Wdho698YADR7TNx8X8z2Bev6SivBBOHY+uqiirZt # g0y9ShQoPzmCcn63Syatatvx157YK9hlcPmVoa1oDE5/L9Uo2bC5a4CH2RwwggZZ # MIIEwaADAgECAhANIM3qwHRbWKHw+Zq6JhzlMA0GCSqGSIb3DQEBDAUAMFQxCzAJ # BgNVBAYTAkdCMRgwFgYDVQQKEw9TZWN0aWdvIExpbWl0ZWQxKzApBgNVBAMTIlNl # Y3RpZ28gUHVibGljIENvZGUgU2lnbmluZyBDQSBSMzYwHhcNMjExMDIyMDAwMDAw # WhcNMjQxMDIxMjM1OTU5WjBdMQswCQYDVQQGEwJESzEUMBIGA1UECAwLSG92ZWRz # dGFkZW4xGzAZBgNVBAoMEkZyZWRkeSBLcmlzdGlhbnNlbjEbMBkGA1UEAwwSRnJl # ZGR5IEtyaXN0aWFuc2VuMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA # gYC5tlg+VRktRRkahxxaV8+DAd6vHoDpcO6w7yT24lnSoMuA6nR7kgy90Y/sHIwK # E9Wwt/px/GAY8eBePWjJrFpG8fBtJbXadRTVd/470Hs/q9t+kh6A/0ELj7wYsKSN # OyuFPoy4rtClOv9ZmrRpoDVnh8Epwg2DpklX2BNzykzBQxIbkpp+xVo2mhPNWDIe # sntc4/BnSebLGw1Vkxmu2acKkIjYrne/7lsuyL9ue0vk8TGk9JBPNPbGKJvHu9sz # P9oGoH36fU1sEZ+AacXrp+onsyPf/hkkpAMHAhzQHl+5Ikvcus/cDm06twm7Vywm # Zcas2rFAV5MyE6WMEaYAolwAHiPz9WAs2GDhFtZZg1tzbRjJIIgPpR+doTIcpcDB # cHnNdSdgWKrTkr2f339oT5bnJfo7oVzc/2HGWvb8Fom6LQAqSC11vWmznHYsCm72 # g+foTKqW8lLDfLF0+aFvToLosrtW9l6Z+l+RQ8MtJ9EHOm2Ny8cFLzZCDZYw32By # dwcLV5rKdy4Ica9on5xZvyMOLiFwuL4v2V4pjEgKJaGSS/IVSMEGjrM9DHT6YS4/ # oq9q20rQUmMZZQmGmEyyKQ8t11si8VHtScN5m0Li8peoWfCU9mRFxSESwTWow8d4 # 62+o9/SzmDxCACdFwzvfKx4JqDMm55cL+beunIvc0NsCAwEAAaOCAZwwggGYMB8G # A1UdIwQYMBaAFA8qyyCHKLjsb0iuK1SmKaoXpM0MMB0GA1UdDgQWBBTZD6uy9ZWI # IqQh3srYu1FlUhdM0TAOBgNVHQ8BAf8EBAMCB4AwDAYDVR0TAQH/BAIwADATBgNV # HSUEDDAKBggrBgEFBQcDAzARBglghkgBhvhCAQEEBAMCBBAwSgYDVR0gBEMwQTA1 # BgwrBgEEAbIxAQIBAwIwJTAjBggrBgEFBQcCARYXaHR0cHM6Ly9zZWN0aWdvLmNv # bS9DUFMwCAYGZ4EMAQQBMEkGA1UdHwRCMEAwPqA8oDqGOGh0dHA6Ly9jcmwuc2Vj # dGlnby5jb20vU2VjdGlnb1B1YmxpY0NvZGVTaWduaW5nQ0FSMzYuY3JsMHkGCCsG # AQUFBwEBBG0wazBEBggrBgEFBQcwAoY4aHR0cDovL2NydC5zZWN0aWdvLmNvbS9T # ZWN0aWdvUHVibGljQ29kZVNpZ25pbmdDQVIzNi5jcnQwIwYIKwYBBQUHMAGGF2h0 # dHA6Ly9vY3NwLnNlY3RpZ28uY29tMA0GCSqGSIb3DQEBDAUAA4IBgQASEbZACurQ # eQN8WDTR+YyNpoQ29YAbbdBRhhzHkT/1ao7LE0QIOgGR4GwKRzufCAwu8pCBiMOU # TDHTezkh0rQrG6khxBX2nSTBL5i4LwKMR08HgZBsbECciABy15yexYWoB/D0H8Wu # Ge63PhGWueR4IFPbIz+jEVxfW0Nyyr7bXTecpKd1iprm+TOmzc2E6ab95dkcXdJV # x6Zys++QrrOfQ+a57qEXkS/wnjjbN9hukL0zg+g8L4DHLKTodzfiQOampvV8Qzbn # B7Y8YjNcxR9s/nptnlQH3jorNFhktiBXvD62jc8pAIg6wyH6NxSMjtTsn7QhkIp2 # kuswIQwD8hN/fZ/m6gkXZhRJWFr2WRZOz+edZ62Jf25C/NYWscwfBwn2hzRZf1Hg # yxkXAl88dvvUA3kw1T6uo8aAB9IcL6Owiy7q4T+RLRF7oqx0vcw0193Yhq/gPOaU # FlqzExP6TQ5TR9XWVPQk+a1B1ATKMLi1JShO6KWTmNkFkgkgpkW69BEwggauMIIE # lqADAgECAhAHNje3JFR82Ees/ShmKl5bMA0GCSqGSIb3DQEBCwUAMGIxCzAJBgNV # BAYTAlVTMRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdp # Y2VydC5jb20xITAfBgNVBAMTGERpZ2lDZXJ0IFRydXN0ZWQgUm9vdCBHNDAeFw0y # MjAzMjMwMDAwMDBaFw0zNzAzMjIyMzU5NTlaMGMxCzAJBgNVBAYTAlVTMRcwFQYD # VQQKEw5EaWdpQ2VydCwgSW5jLjE7MDkGA1UEAxMyRGlnaUNlcnQgVHJ1c3RlZCBH # NCBSU0E0MDk2IFNIQTI1NiBUaW1lU3RhbXBpbmcgQ0EwggIiMA0GCSqGSIb3DQEB # AQUAA4ICDwAwggIKAoICAQDGhjUGSbPBPXJJUVXHJQPE8pE3qZdRodbSg9GeTKJt # oLDMg/la9hGhRBVCX6SI82j6ffOciQt/nR+eDzMfUBMLJnOWbfhXqAJ9/UO0hNoR # 8XOxs+4rgISKIhjf69o9xBd/qxkrPkLcZ47qUT3w1lbU5ygt69OxtXXnHwZljZQp # 09nsad/ZkIdGAHvbREGJ3HxqV3rwN3mfXazL6IRktFLydkf3YYMZ3V+0VAshaG43 # IbtArF+y3kp9zvU5EmfvDqVjbOSmxR3NNg1c1eYbqMFkdECnwHLFuk4fsbVYTXn+ # 149zk6wsOeKlSNbwsDETqVcplicu9Yemj052FVUmcJgmf6AaRyBD40NjgHt1bicl # kJg6OBGz9vae5jtb7IHeIhTZgirHkr+g3uM+onP65x9abJTyUpURK1h0QCirc0PO # 30qhHGs4xSnzyqqWc0Jon7ZGs506o9UD4L/wojzKQtwYSH8UNM/STKvvmz3+Drhk # Kvp1KCRB7UK/BZxmSVJQ9FHzNklNiyDSLFc1eSuo80VgvCONWPfcYd6T/jnA+bIw # pUzX6ZhKWD7TA4j+s4/TXkt2ElGTyYwMO1uKIqjBJgj5FBASA31fI7tk42PgpuE+ # 9sJ0sj8eCXbsq11GdeJgo1gJASgADoRU7s7pXcheMBK9Rp6103a50g5rmQzSM7TN # sQIDAQABo4IBXTCCAVkwEgYDVR0TAQH/BAgwBgEB/wIBADAdBgNVHQ4EFgQUuhbZ # bU2FL3MpdpovdYxqII+eyG8wHwYDVR0jBBgwFoAU7NfjgtJxXWRM3y5nP+e6mK4c # D08wDgYDVR0PAQH/BAQDAgGGMBMGA1UdJQQMMAoGCCsGAQUFBwMIMHcGCCsGAQUF # BwEBBGswaTAkBggrBgEFBQcwAYYYaHR0cDovL29jc3AuZGlnaWNlcnQuY29tMEEG # CCsGAQUFBzAChjVodHRwOi8vY2FjZXJ0cy5kaWdpY2VydC5jb20vRGlnaUNlcnRU # cnVzdGVkUm9vdEc0LmNydDBDBgNVHR8EPDA6MDigNqA0hjJodHRwOi8vY3JsMy5k # aWdpY2VydC5jb20vRGlnaUNlcnRUcnVzdGVkUm9vdEc0LmNybDAgBgNVHSAEGTAX # MAgGBmeBDAEEAjALBglghkgBhv1sBwEwDQYJKoZIhvcNAQELBQADggIBAH1ZjsCT # tm+YqUQiAX5m1tghQuGwGC4QTRPPMFPOvxj7x1Bd4ksp+3CKDaopafxpwc8dB+k+ # YMjYC+VcW9dth/qEICU0MWfNthKWb8RQTGIdDAiCqBa9qVbPFXONASIlzpVpP0d3 # +3J0FNf/q0+KLHqrhc1DX+1gtqpPkWaeLJ7giqzl/Yy8ZCaHbJK9nXzQcAp876i8 # dU+6WvepELJd6f8oVInw1YpxdmXazPByoyP6wCeCRK6ZJxurJB4mwbfeKuv2nrF5 # mYGjVoarCkXJ38SNoOeY+/umnXKvxMfBwWpx2cYTgAnEtp/Nh4cku0+jSbl3ZpHx # cpzpSwJSpzd+k1OsOx0ISQ+UzTl63f8lY5knLD0/a6fxZsNBzU+2QJshIUDQtxMk # zdwdeDrknq3lNHGS1yZr5Dhzq6YBT70/O3itTK37xJV77QpfMzmHQXh6OOmc4d0j # /R0o08f56PGYX/sr2H7yRp11LB4nLCbbbxV7HhmLNriT1ObyF5lZynDwN7+YAN8g # Fk8n+2BnFqFmut1VwDophrCYoCvtlUG3OtUVmDG0YgkPCr2B2RP+v6TR81fZvAT6 # gt4y3wSJ8ADNXcL50CN/AAvkdgIm2fBldkKmKYcJRyvmfxqkhQ/8mJb2VVQrH4D6 # wPIOK+XW+6kvRBVK5xMOHds3OBqhK/bt1nz8MIIGwjCCBKqgAwIBAgIQBUSv85Sd # CDmmv9s/X+VhFjANBgkqhkiG9w0BAQsFADBjMQswCQYDVQQGEwJVUzEXMBUGA1UE # ChMORGlnaUNlcnQsIEluYy4xOzA5BgNVBAMTMkRpZ2lDZXJ0IFRydXN0ZWQgRzQg # UlNBNDA5NiBTSEEyNTYgVGltZVN0YW1waW5nIENBMB4XDTIzMDcxNDAwMDAwMFoX # DTM0MTAxMzIzNTk1OVowSDELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDkRpZ2lDZXJ0 # LCBJbmMuMSAwHgYDVQQDExdEaWdpQ2VydCBUaW1lc3RhbXAgMjAyMzCCAiIwDQYJ # KoZIhvcNAQEBBQADggIPADCCAgoCggIBAKNTRYcdg45brD5UsyPgz5/X5dLnXaEO # CdwvSKOXejsqnGfcYhVYwamTEafNqrJq3RApih5iY2nTWJw1cb86l+uUUI8cIOrH # mjsvlmbjaedp/lvD1isgHMGXlLSlUIHyz8sHpjBoyoNC2vx/CSSUpIIa2mq62DvK # Xd4ZGIX7ReoNYWyd/nFexAaaPPDFLnkPG2ZS48jWPl/aQ9OE9dDH9kgtXkV1lnX+ # 3RChG4PBuOZSlbVH13gpOWvgeFmX40QrStWVzu8IF+qCZE3/I+PKhu60pCFkcOvV # 5aDaY7Mu6QXuqvYk9R28mxyyt1/f8O52fTGZZUdVnUokL6wrl76f5P17cz4y7lI0 # +9S769SgLDSb495uZBkHNwGRDxy1Uc2qTGaDiGhiu7xBG3gZbeTZD+BYQfvYsSzh # Ua+0rRUGFOpiCBPTaR58ZE2dD9/O0V6MqqtQFcmzyrzXxDtoRKOlO0L9c33u3Qr/ # eTQQfqZcClhMAD6FaXXHg2TWdc2PEnZWpST618RrIbroHzSYLzrqawGw9/sqhux7 # UjipmAmhcbJsca8+uG+W1eEQE/5hRwqM/vC2x9XH3mwk8L9CgsqgcT2ckpMEtGlw # Jw1Pt7U20clfCKRwo+wK8REuZODLIivK8SgTIUlRfgZm0zu++uuRONhRB8qUt+JQ # ofM604qDy0B7AgMBAAGjggGLMIIBhzAOBgNVHQ8BAf8EBAMCB4AwDAYDVR0TAQH/ # BAIwADAWBgNVHSUBAf8EDDAKBggrBgEFBQcDCDAgBgNVHSAEGTAXMAgGBmeBDAEE # AjALBglghkgBhv1sBwEwHwYDVR0jBBgwFoAUuhbZbU2FL3MpdpovdYxqII+eyG8w # HQYDVR0OBBYEFKW27xPn783QZKHVVqllMaPe1eNJMFoGA1UdHwRTMFEwT6BNoEuG # SWh0dHA6Ly9jcmwzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFRydXN0ZWRHNFJTQTQw # OTZTSEEyNTZUaW1lU3RhbXBpbmdDQS5jcmwwgZAGCCsGAQUFBwEBBIGDMIGAMCQG # CCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wWAYIKwYBBQUHMAKG # TGh0dHA6Ly9jYWNlcnRzLmRpZ2ljZXJ0LmNvbS9EaWdpQ2VydFRydXN0ZWRHNFJT # QTQwOTZTSEEyNTZUaW1lU3RhbXBpbmdDQS5jcnQwDQYJKoZIhvcNAQELBQADggIB # AIEa1t6gqbWYF7xwjU+KPGic2CX/yyzkzepdIpLsjCICqbjPgKjZ5+PF7SaCinEv # GN1Ott5s1+FgnCvt7T1IjrhrunxdvcJhN2hJd6PrkKoS1yeF844ektrCQDifXcig # LiV4JZ0qBXqEKZi2V3mP2yZWK7Dzp703DNiYdk9WuVLCtp04qYHnbUFcjGnRuSvE # xnvPnPp44pMadqJpddNQ5EQSviANnqlE0PjlSXcIWiHFtM+YlRpUurm8wWkZus8W # 8oM3NG6wQSbd3lqXTzON1I13fXVFoaVYJmoDRd7ZULVQjK9WvUzF4UbFKNOt50MA # cN7MmJ4ZiQPq1JE3701S88lgIcRWR+3aEUuMMsOI5ljitts++V+wQtaP4xeR0arA # VeOGv6wnLEHQmjNKqDbUuXKWfpd5OEhfysLcPTLfddY2Z1qJ+Panx+VPNTwAvb6c # Kmx5AdzaROY63jg7B145WPR8czFVoIARyxQMfq68/qTreWWqaNYiyjvrmoI1VygW # y2nyMpqy0tg6uLFGhmu6F/3Ed2wVbK6rr3M66ElGt9V/zLY4wNjsHPW2obhDLN9O # TH0eaHDAdwrUAuBcYLso/zjlUlrWrBciI0707NMX+1Br/wd3H3GXREHJuEbTbDJ8 # WC9nR2XlG3O2mflrLAZG70Ee8PBf4NvZrZCARK+AEEGKMYIGPjCCBjoCAQEwaDBU # MQswCQYDVQQGEwJHQjEYMBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMSswKQYDVQQD # EyJTZWN0aWdvIFB1YmxpYyBDb2RlIFNpZ25pbmcgQ0EgUjM2AhANIM3qwHRbWKHw # +Zq6JhzlMA0GCWCGSAFlAwQCAQUAoIGEMBgGCisGAQQBgjcCAQwxCjAIoAKAAKEC # gAAwGQYJKoZIhvcNAQkDMQwGCisGAQQBgjcCAQQwHAYKKwYBBAGCNwIBCzEOMAwG # CisGAQQBgjcCARUwLwYJKoZIhvcNAQkEMSIEINqZova0RqwmS/oZVC1Zd8FXaGfp # hLYIx7HFxqeuwRk6MA0GCSqGSIb3DQEBAQUABIICACY5F3+gve7Z07tu155/zupp # fGHwz83M6uQQYO/H0ATVrzOtoItY+nLe3F1ljErS33CPtu+J02hyEPnzrB8h9lkq # 4z6bWtHlgp7rpmhuUVduKmMwkPp+x32B5BTfvgPcpR09y85Ebh0Q/qGYC8+9Myqh # DtK+UEBY0rTyd/Gh/PR9HjtsCRY3t4VoIRz9d8myqUN+1QvTQkX76fcrrdon/Ipa # Zv1UZf9OU3O/ZT4xPAf3xY2nyk3IghREphqbEN9WI3XM7kvdmdw3i1pCVpksc6nb # e3RJ9Bi8tlRTu38skzl5e8Gcqm1Hwy+Y3EKwrPX6Eiz0K9q3+ujSqOq3d5T8d89u # CdlgOaeJ4RlK0TbvceH/SXcN3qIuoGcFPP8cFoOe86V9dbp4yO977/GMCO2hiok2 # ZboBIFfyE5JKlHGqyGB5fU2gcHSRswqz7qk02nVit8Yao2a6pNNj4JZinHL2dOgf # Y8rDx5sDI2I6BJ1Zlf3RJeUtx1eR7JtnZBdEpsrlej3oargSPaTh5XojiQh09B0+ # Id1JNsyWGQtFPvJDlEiBLfIHrNUfaQm6EVvljv/amFP9CN3wAAQ5sz5o3JIZZrJV # aTZJJaqBg5pV/b8grZQIbyzcrrLFnj7Q2WLQId7yEe4B948cX2prVv7au2yHus1x # T8WLi5fnNfI2UsnOHAQsoYIDIDCCAxwGCSqGSIb3DQEJBjGCAw0wggMJAgEBMHcw # YzELMAkGA1UEBhMCVVMxFzAVBgNVBAoTDkRpZ2lDZXJ0LCBJbmMuMTswOQYDVQQD # EzJEaWdpQ2VydCBUcnVzdGVkIEc0IFJTQTQwOTYgU0hBMjU2IFRpbWVTdGFtcGlu # ZyBDQQIQBUSv85SdCDmmv9s/X+VhFjANBglghkgBZQMEAgEFAKBpMBgGCSqGSIb3 # DQEJAzELBgkqhkiG9w0BBwEwHAYJKoZIhvcNAQkFMQ8XDTI0MDEwODEzMTMyNVow # LwYJKoZIhvcNAQkEMSIEIBmZ3Zwh6k+RSqBdK+3CFRyP8KuqEldnUhYVnkcqHyEy # MA0GCSqGSIb3DQEBAQUABIICAIdNegQELQs1TYR4RcZAHzCqmT3WXv6SEabgEysw # 4aygHnxRlVbJ2v1OIKXWAnfV1r6mc52V2WurvsTBuFwJLdR91Od5T2mVl4+danb8 # 4v1JmXP0CtF3edjdtdNOpsj6Kh1JZZHKI4K5zB4RJtU3jkWLyCToK4Uc+HlWEEhB # y2nKCmFRl3/5do8hXUzm3cGEBgcoMKZpUu9E5XgLKyrwM+Oqs1zS0hPJ2KHFU45X # 283WgS8qVLJGnK3r3mYZvdLd/O8EzXZSZUdGwu4RY2C5J/9kXBBFWF9vHgGAqQ+1 # BmKjcnNZIhL5DuNrNhUn9A3qfZzS/b+JDsmXE8G/E38T7PTTnCcXM6MxoJnXPPvk # hHL+1zowT6R7QSclTdZoV++If4+nVyCsL6Ys8YXuTEF5vUongXTxT6ToMc07/7Sg # LpC9HdtIIo7BcRvty/F5T4Xjg5Q2DhuEXgcZDPUc9TdNl57HjY9ytL3t8qYhnF2W # WdaPWfdwRidkxBBDDLwNgwRgeVGz+cBoC32WVNFnAYv701G3cOa2U4vopPgseldz # wRf3sq8dGSviZtGLHuI0TYnIHka1EQk7a+o5IF8HVwvpyGTYZdJ3jmcSvP1W8BCP # nCT06PC7J8e5Umufo8ZJGba4r++ODRs3eqlbkoEvC9+H0/aX7bEipMtksee6YMlf # yDw5 # SIG # End signature block |