From ba48ac9caacb1918af434f92dffa561346e6a2f3 Mon Sep 17 00:00:00 2001 From: spetersenms Date: Mon, 27 Jul 2026 13:56:56 +0200 Subject: [PATCH 1/2] Use AL-Go separate RunTests action for test execution Enable the opt-in AL-Go useSeparateTestAction so BCApps test execution runs through the RunTests action (after RunPipeline builds and keeps the container alive) instead of inside RunPipeline. Test technology is unchanged (still BCH via the per-project RunTestsInBcContainer override). - .github/AL-Go-Settings.json: set useSeparateTestAction: true. - _BuildALGoProject.yaml: surface useSeparateTestAction via ReadSettings and add a Run Tests step after Build, gated on env.useSeparateTestAction, passing installTestAppsJson from DownloadProjectDependencies. - ParallelTestExecution.psm1: in Invoke-PerProjectTestRun, default the reference tenant to 'default' when the caller (RunTests override seam) supplies none, since RunTests does not pass a tenant. - ParallelTestExecution.Test.ps1: cover the tenant-defaulting behavior. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .github/AL-Go-Settings.json | 1 + .github/workflows/_BuildALGoProject.yaml | 13 ++++++- build/scripts/ParallelTestExecution.psm1 | 9 +++++ .../tests/ParallelTestExecution.Test.ps1 | 39 +++++++++++++++++++ 4 files changed, 61 insertions(+), 1 deletion(-) diff --git a/.github/AL-Go-Settings.json b/.github/AL-Go-Settings.json index 7c887b761e5..b4bbb7f55b2 100644 --- a/.github/AL-Go-Settings.json +++ b/.github/AL-Go-Settings.json @@ -14,6 +14,7 @@ "repoVersion": "29.0", "memoryLimit": "16G", "numberOfTenantsForTesting": 3, + "useSeparateTestAction": true, "workspaceCompilation": { "enabled": true, "parallelism": -1 diff --git a/.github/workflows/_BuildALGoProject.yaml b/.github/workflows/_BuildALGoProject.yaml index a46ed596fa4..1e34a9ccabe 100644 --- a/.github/workflows/_BuildALGoProject.yaml +++ b/.github/workflows/_BuildALGoProject.yaml @@ -109,7 +109,7 @@ jobs: shell: ${{ inputs.shell }} project: ${{ inputs.project }} buildMode: ${{ inputs.buildMode }} - get: useCompilerFolder,workspaceCompilation,keyVaultCodesignCertificateName,doNotSignApps,doNotRunTests,doNotRunBcptTests,doNotRunpageScriptingTests,artifact,generateDependencyArtifact,trustedSigning,useGitSubmodules,trackALAlertsInGitHub,skipUpgrade + get: useCompilerFolder,workspaceCompilation,keyVaultCodesignCertificateName,doNotSignApps,doNotRunTests,doNotRunBcptTests,doNotRunpageScriptingTests,useSeparateTestAction,artifact,generateDependencyArtifact,trustedSigning,useGitSubmodules,trackALAlertsInGitHub,skipUpgrade - name: Run Build Initialize hook if: hashFiles(format('{0}/.AL-Go/BuildInitialize.ps1', inputs.project)) != '' @@ -228,6 +228,17 @@ jobs: baselineWorkflowSHA: ${{ inputs.baselineWorkflowSHA }} previousAppsPath: ${{ steps.DownloadPreviousRelease.outputs.PreviousAppsPath }} + - name: Run Tests + uses: microsoft/AL-Go/Actions/RunTests@16948d91ca57e875e3d823536bac740c0ca1fdbd + if: steps.DetermineBuildProject.outputs.BuildIt == 'True' && env.useSeparateTestAction == 'True' + env: + Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}' + BuildMode: ${{ inputs.buildMode }} + with: + shell: ${{ inputs.shell }} + project: ${{ inputs.project }} + installTestAppsJson: ${{ steps.DownloadProjectDependencies.outputs.DownloadedTestApps }} + - name: Sign id: sign if: steps.DetermineBuildProject.outputs.BuildIt == 'True' && inputs.signArtifacts && env.doNotSignApps == 'False' && (env.keyVaultCodesignCertificateName != '' || (fromJson(env.trustedSigning).Endpoint != '' && fromJson(env.trustedSigning).Account != '' && fromJson(env.trustedSigning).CertificateProfile != '')) && (hashFiles(format('{0}/.buildartifacts/Apps/*.app',inputs.project)) != '') diff --git a/build/scripts/ParallelTestExecution.psm1 b/build/scripts/ParallelTestExecution.psm1 index 57cb5e7d02c..0d22569c481 100644 --- a/build/scripts/ParallelTestExecution.psm1 +++ b/build/scripts/ParallelTestExecution.psm1 @@ -709,6 +709,15 @@ function Invoke-PerProjectTestRun { $cached = Get-CachedTestRunResult -ContainerName $parameters.containerName if ($null -ne $cached) { return $cached } + # When invoked by Run-AlPipeline the parameters hashtable carries a 'tenant' (typically + # 'default'). When invoked by the AL-Go RunTests action's override seam (useSeparateTestAction) + # no tenant is supplied, so fall back to the container's default tenant. This tenant is only used + # as the reference tenant for enumerating installed test apps; the actual test dispatch fans out + # across the operational tenants returned by Get-AvailableBcTenants. + if ([string]::IsNullOrEmpty($parameters.tenant)) { + $parameters["tenant"] = "default" + } + $testType = Get-ALGoSetting -Key "testType" $country = Get-ALGoSetting -Key "country" $bucketNumber = if ($testType -eq "Legacy") { Get-ALGoSetting -Key "bucketNumber" } else { 0 } diff --git a/build/scripts/tests/ParallelTestExecution.Test.ps1 b/build/scripts/tests/ParallelTestExecution.Test.ps1 index 777ec0c1e32..6ecd6386383 100644 --- a/build/scripts/tests/ParallelTestExecution.Test.ps1 +++ b/build/scripts/tests/ParallelTestExecution.Test.ps1 @@ -97,4 +97,43 @@ Describe "ParallelTestExecution app-name resolution" { $result | Should -Not -Contain 'Projects-Json-Key' } } + + Context "Invoke-PerProjectTestRun reference tenant defaulting" { + BeforeEach { + # No cached result, so the function proceeds to enumerate installed apps. + Mock -ModuleName ParallelTestExecution -CommandName Get-CachedTestRunResult -MockWith { $null } + Mock -ModuleName ParallelTestExecution -CommandName Get-ALGoSetting -MockWith { + param([string]$Key) + switch ($Key) { 'testType' { 'UnitTest' } 'country' { 'w1' } default { $null } } + } + # Capture the tenant the function forwards. Return a non-null installed list so the + # downstream call binds, then force an empty bucket so the function exits early + # (before any parallel dispatch / dot-sourced script execution). + $script:capturedTenant = '<>' + Mock -ModuleName ParallelTestExecution -CommandName Get-InstalledTestAppNames -MockWith { + param([string]$ContainerName, [string]$Tenant, [string]$Country) + $script:capturedTenant = $Tenant + return @('SomeApp') + } + Mock -ModuleName ParallelTestExecution -CommandName Get-AppNamesForBucket -MockWith { @() } + } + + It "defaults the reference tenant to 'default' when the caller supplies none (RunTests override seam)" { + $params = @{ containerName = 'c'; credential = 'cred' } + + Invoke-PerProjectTestRun -parameters $params | Should -BeTrue + + $script:capturedTenant | Should -Be 'default' + $params['tenant'] | Should -Be 'default' + } + + It "keeps the caller-supplied tenant (Run-AlPipeline path)" { + $params = @{ containerName = 'c'; credential = 'cred'; tenant = 'tenant-42' } + + Invoke-PerProjectTestRun -parameters $params | Should -BeTrue + + $script:capturedTenant | Should -Be 'tenant-42' + $params['tenant'] | Should -Be 'tenant-42' + } + } } From dcd4ba08a1fda74fdc3f474e5a72bcc305dcb78c Mon Sep 17 00:00:00 2001 From: "business-central-bot[bot]" <205154211+business-central-bot[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2026 12:11:14 +0000 Subject: [PATCH 2/2] [spetersen/SeparateTestAction@ba48ac9] Update AL-Go System Files from spetersenms/AL-Go@spetersen-microsoft-separate-test-action-bcapps - 481147f / Related to AB#539394 (#9743) No release notes available! Related to [AB#539394](https://dynamicssmb2.visualstudio.com/1fcb79e7-ab07-432a-a3c6-6cf5a88ba4a5/_workitems/edit/539394) Co-authored-by: spetersenms --- .github/AL-Go-Settings.json | 6 +- .github/workflows/CICD.yaml | 48 +- .../DeployReferenceDocumentation.yaml | 12 +- .github/workflows/IncrementVersionNumber.yaml | 14 +- .github/workflows/PullRequestHandler.yaml | 16 +- .github/workflows/Troubleshooting.yaml | 2 +- .../workflows/UpdateGitHubGoSystemFiles.yaml | 20 +- .github/workflows/_BuildALGoProject.yaml | 32 +- build/projects/Apps AT/.AL-Go/cloudDevEnv.ps1 | 12 +- build/projects/Apps AT/.AL-Go/localDevEnv.ps1 | 12 +- build/projects/Apps AT/.AL-Go/settings.json | 2 +- build/projects/Apps AU/.AL-Go/cloudDevEnv.ps1 | 12 +- build/projects/Apps AU/.AL-Go/localDevEnv.ps1 | 12 +- build/projects/Apps AU/.AL-Go/settings.json | 2 +- build/projects/Apps BE/.AL-Go/cloudDevEnv.ps1 | 12 +- build/projects/Apps BE/.AL-Go/localDevEnv.ps1 | 12 +- build/projects/Apps BE/.AL-Go/settings.json | 2 +- build/projects/Apps CA/.AL-Go/cloudDevEnv.ps1 | 12 +- build/projects/Apps CA/.AL-Go/localDevEnv.ps1 | 12 +- build/projects/Apps CA/.AL-Go/settings.json | 570 ++++++++--------- build/projects/Apps CH/.AL-Go/cloudDevEnv.ps1 | 12 +- build/projects/Apps CH/.AL-Go/localDevEnv.ps1 | 12 +- build/projects/Apps CH/.AL-Go/settings.json | 2 +- build/projects/Apps CZ/.AL-Go/cloudDevEnv.ps1 | 12 +- build/projects/Apps CZ/.AL-Go/localDevEnv.ps1 | 12 +- build/projects/Apps CZ/.AL-Go/settings.json | 572 ++++++++--------- build/projects/Apps DE/.AL-Go/cloudDevEnv.ps1 | 12 +- build/projects/Apps DE/.AL-Go/localDevEnv.ps1 | 12 +- build/projects/Apps DE/.AL-Go/settings.json | 2 +- build/projects/Apps DK/.AL-Go/cloudDevEnv.ps1 | 12 +- build/projects/Apps DK/.AL-Go/localDevEnv.ps1 | 12 +- build/projects/Apps DK/.AL-Go/settings.json | 580 ++++++++--------- build/projects/Apps ES/.AL-Go/cloudDevEnv.ps1 | 12 +- build/projects/Apps ES/.AL-Go/localDevEnv.ps1 | 12 +- build/projects/Apps ES/.AL-Go/settings.json | 2 +- build/projects/Apps FI/.AL-Go/cloudDevEnv.ps1 | 12 +- build/projects/Apps FI/.AL-Go/localDevEnv.ps1 | 12 +- build/projects/Apps FI/.AL-Go/settings.json | 2 +- build/projects/Apps FR/.AL-Go/cloudDevEnv.ps1 | 12 +- build/projects/Apps FR/.AL-Go/localDevEnv.ps1 | 12 +- build/projects/Apps FR/.AL-Go/settings.json | 560 ++++++++--------- build/projects/Apps GB/.AL-Go/cloudDevEnv.ps1 | 12 +- build/projects/Apps GB/.AL-Go/localDevEnv.ps1 | 12 +- build/projects/Apps GB/.AL-Go/settings.json | 2 +- build/projects/Apps IN/.AL-Go/cloudDevEnv.ps1 | 12 +- build/projects/Apps IN/.AL-Go/localDevEnv.ps1 | 12 +- build/projects/Apps IN/.AL-Go/settings.json | 2 +- build/projects/Apps IS/.AL-Go/cloudDevEnv.ps1 | 12 +- build/projects/Apps IS/.AL-Go/localDevEnv.ps1 | 12 +- build/projects/Apps IS/.AL-Go/settings.json | 2 +- build/projects/Apps IT/.AL-Go/cloudDevEnv.ps1 | 12 +- build/projects/Apps IT/.AL-Go/localDevEnv.ps1 | 12 +- build/projects/Apps IT/.AL-Go/settings.json | 2 +- build/projects/Apps MX/.AL-Go/cloudDevEnv.ps1 | 12 +- build/projects/Apps MX/.AL-Go/localDevEnv.ps1 | 12 +- build/projects/Apps MX/.AL-Go/settings.json | 2 +- build/projects/Apps NL/.AL-Go/cloudDevEnv.ps1 | 12 +- build/projects/Apps NL/.AL-Go/localDevEnv.ps1 | 12 +- build/projects/Apps NL/.AL-Go/settings.json | 2 +- build/projects/Apps NO/.AL-Go/cloudDevEnv.ps1 | 12 +- build/projects/Apps NO/.AL-Go/localDevEnv.ps1 | 12 +- build/projects/Apps NO/.AL-Go/settings.json | 2 +- build/projects/Apps NZ/.AL-Go/cloudDevEnv.ps1 | 12 +- build/projects/Apps NZ/.AL-Go/localDevEnv.ps1 | 12 +- build/projects/Apps NZ/.AL-Go/settings.json | 2 +- build/projects/Apps RU/.AL-Go/cloudDevEnv.ps1 | 12 +- build/projects/Apps RU/.AL-Go/localDevEnv.ps1 | 12 +- build/projects/Apps RU/.AL-Go/settings.json | 2 +- build/projects/Apps SE/.AL-Go/cloudDevEnv.ps1 | 12 +- build/projects/Apps SE/.AL-Go/localDevEnv.ps1 | 12 +- build/projects/Apps SE/.AL-Go/settings.json | 2 +- build/projects/Apps US/.AL-Go/cloudDevEnv.ps1 | 12 +- build/projects/Apps US/.AL-Go/localDevEnv.ps1 | 12 +- build/projects/Apps US/.AL-Go/settings.json | 582 +++++++++--------- build/projects/Apps W1/.AL-Go/cloudDevEnv.ps1 | 12 +- build/projects/Apps W1/.AL-Go/localDevEnv.ps1 | 12 +- build/projects/Apps W1/.AL-Go/settings.json | 2 +- .../.AL-Go/cloudDevEnv.ps1 | 12 +- .../.AL-Go/localDevEnv.ps1 | 12 +- .../.AL-Go/settings.json | 2 +- .../Test Apps AT/.AL-Go/cloudDevEnv.ps1 | 12 +- .../Test Apps AT/.AL-Go/localDevEnv.ps1 | 12 +- .../Test Apps AT/.AL-Go/settings.json | 2 +- .../Test Apps AU/.AL-Go/cloudDevEnv.ps1 | 12 +- .../Test Apps AU/.AL-Go/localDevEnv.ps1 | 12 +- .../Test Apps AU/.AL-Go/settings.json | 2 +- .../Test Apps BE/.AL-Go/cloudDevEnv.ps1 | 12 +- .../Test Apps BE/.AL-Go/localDevEnv.ps1 | 12 +- .../Test Apps BE/.AL-Go/settings.json | 2 +- .../Test Apps CA/.AL-Go/cloudDevEnv.ps1 | 12 +- .../Test Apps CA/.AL-Go/localDevEnv.ps1 | 12 +- .../Test Apps CA/.AL-Go/settings.json | 2 +- .../Test Apps CH/.AL-Go/cloudDevEnv.ps1 | 12 +- .../Test Apps CH/.AL-Go/localDevEnv.ps1 | 12 +- .../Test Apps CH/.AL-Go/settings.json | 2 +- .../Test Apps CZ/.AL-Go/cloudDevEnv.ps1 | 12 +- .../Test Apps CZ/.AL-Go/localDevEnv.ps1 | 12 +- .../Test Apps CZ/.AL-Go/settings.json | 2 +- .../Test Apps DE/.AL-Go/cloudDevEnv.ps1 | 12 +- .../Test Apps DE/.AL-Go/localDevEnv.ps1 | 12 +- .../Test Apps DE/.AL-Go/settings.json | 2 +- .../Test Apps DK/.AL-Go/cloudDevEnv.ps1 | 12 +- .../Test Apps DK/.AL-Go/localDevEnv.ps1 | 12 +- .../Test Apps DK/.AL-Go/settings.json | 2 +- .../Test Apps ES/.AL-Go/cloudDevEnv.ps1 | 12 +- .../Test Apps ES/.AL-Go/localDevEnv.ps1 | 12 +- .../Test Apps ES/.AL-Go/settings.json | 2 +- .../Test Apps FI/.AL-Go/cloudDevEnv.ps1 | 12 +- .../Test Apps FI/.AL-Go/localDevEnv.ps1 | 12 +- .../Test Apps FI/.AL-Go/settings.json | 2 +- .../Test Apps FR/.AL-Go/cloudDevEnv.ps1 | 12 +- .../Test Apps FR/.AL-Go/localDevEnv.ps1 | 12 +- .../Test Apps FR/.AL-Go/settings.json | 2 +- .../Test Apps GB/.AL-Go/cloudDevEnv.ps1 | 12 +- .../Test Apps GB/.AL-Go/localDevEnv.ps1 | 12 +- .../Test Apps GB/.AL-Go/settings.json | 2 +- .../Test Apps IN/.AL-Go/cloudDevEnv.ps1 | 12 +- .../Test Apps IN/.AL-Go/localDevEnv.ps1 | 12 +- .../Test Apps IN/.AL-Go/settings.json | 2 +- .../Test Apps IS/.AL-Go/cloudDevEnv.ps1 | 12 +- .../Test Apps IS/.AL-Go/localDevEnv.ps1 | 12 +- .../Test Apps IS/.AL-Go/settings.json | 2 +- .../Test Apps IT/.AL-Go/cloudDevEnv.ps1 | 12 +- .../Test Apps IT/.AL-Go/localDevEnv.ps1 | 12 +- .../Test Apps IT/.AL-Go/settings.json | 2 +- .../Test Apps MX/.AL-Go/cloudDevEnv.ps1 | 12 +- .../Test Apps MX/.AL-Go/localDevEnv.ps1 | 12 +- .../Test Apps MX/.AL-Go/settings.json | 2 +- .../Test Apps NL/.AL-Go/cloudDevEnv.ps1 | 12 +- .../Test Apps NL/.AL-Go/localDevEnv.ps1 | 12 +- .../Test Apps NL/.AL-Go/settings.json | 2 +- .../Test Apps NO/.AL-Go/cloudDevEnv.ps1 | 12 +- .../Test Apps NO/.AL-Go/localDevEnv.ps1 | 12 +- .../Test Apps NO/.AL-Go/settings.json | 2 +- .../Test Apps NZ/.AL-Go/cloudDevEnv.ps1 | 12 +- .../Test Apps NZ/.AL-Go/localDevEnv.ps1 | 12 +- .../Test Apps NZ/.AL-Go/settings.json | 2 +- .../Test Apps SE/.AL-Go/cloudDevEnv.ps1 | 12 +- .../Test Apps SE/.AL-Go/localDevEnv.ps1 | 12 +- .../Test Apps SE/.AL-Go/settings.json | 2 +- .../Test Apps US/.AL-Go/cloudDevEnv.ps1 | 12 +- .../Test Apps US/.AL-Go/localDevEnv.ps1 | 12 +- .../Test Apps US/.AL-Go/settings.json | 2 +- .../Test Apps W1/.AL-Go/cloudDevEnv.ps1 | 12 +- .../Test Apps W1/.AL-Go/localDevEnv.ps1 | 12 +- .../Test Apps W1/.AL-Go/settings.json | 2 +- 146 files changed, 2100 insertions(+), 2100 deletions(-) diff --git a/.github/AL-Go-Settings.json b/.github/AL-Go-Settings.json index b4bbb7f55b2..f037ab2cb33 100644 --- a/.github/AL-Go-Settings.json +++ b/.github/AL-Go-Settings.json @@ -1,7 +1,7 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "type": "PTE", - "templateUrl": "https://github.com/microsoft/AL-Go-PTE@preview", + "templateUrl": "https://github.com/spetersenms/AL-Go@spetersen-microsoft-separate-test-action-bcapps", "bcContainerHelperVersion": "preview", "runs-on": "windows-latest", "cacheImageName": "", @@ -155,7 +155,7 @@ ] }, "UpdateALGoSystemFilesEnvironment": "Official-Build", - "templateSha": "0cf8b8df105daa9b81714bbf3fa0e93ec1d64255", + "templateSha": "481147f37c2e9f61433c3f4b49e0effd8fe669df", "commitOptions": { "messageSuffix": "Related to AB#539394", "pullRequestAutoMerge": true, diff --git a/.github/workflows/CICD.yaml b/.github/workflows/CICD.yaml index f5d40eb3ff8..87b196427d2 100644 --- a/.github/workflows/CICD.yaml +++ b/.github/workflows/CICD.yaml @@ -51,7 +51,7 @@ jobs: trackALAlertsInGitHub: ${{ steps.SetALCodeAnalysisVar.outputs.trackALAlertsInGitHub }} steps: - name: Dump Workflow Information - uses: microsoft/AL-Go/Actions/DumpWorkflowInfo@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/DumpWorkflowInfo@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell @@ -62,13 +62,13 @@ jobs: - name: Initialize the workflow id: init - uses: microsoft/AL-Go/Actions/WorkflowInitialize@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/WorkflowInitialize@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell - name: Read settings id: ReadSettings - uses: microsoft/AL-Go/Actions/ReadSettings@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/ReadSettings@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell get: type,powerPlatformSolutionFolder,useGitSubmodules,trackALAlertsInGitHub @@ -82,7 +82,7 @@ jobs: - name: Read submodules token id: ReadSubmodulesToken if: env.useGitSubmodules != 'false' && env.useGitSubmodules != '' - uses: microsoft/AL-Go/Actions/ReadSecrets@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/ReadSecrets@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell gitHubSecrets: ${{ toJson(secrets) }} @@ -103,7 +103,7 @@ jobs: - name: Determine Projects To Build id: determineProjectsToBuild - uses: microsoft/AL-Go/Actions/DetermineProjectsToBuild@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/DetermineProjectsToBuild@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell maxBuildDepth: ${{ env.workflowDepth }} @@ -116,7 +116,7 @@ jobs: - name: Determine Delivery Target Secrets id: DetermineDeliveryTargetSecrets - uses: microsoft/AL-Go/Actions/DetermineDeliveryTargets@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/DetermineDeliveryTargets@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell projectsJson: '${{ steps.determineProjectsToBuild.outputs.ProjectsJson }}' @@ -124,7 +124,7 @@ jobs: - name: Read secrets id: ReadSecrets - uses: microsoft/AL-Go/Actions/ReadSecrets@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/ReadSecrets@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell gitHubSecrets: ${{ toJson(secrets) }} @@ -132,7 +132,7 @@ jobs: - name: Determine Delivery Targets id: DetermineDeliveryTargets - uses: microsoft/AL-Go/Actions/DetermineDeliveryTargets@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/DetermineDeliveryTargets@spetersen-microsoft-separate-test-action-bcapps env: Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}' with: @@ -142,7 +142,7 @@ jobs: - name: Determine Deployment Environments id: DetermineDeploymentEnvironments - uses: microsoft/AL-Go/Actions/DetermineDeploymentEnvironments@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/DetermineDeploymentEnvironments@spetersen-microsoft-separate-test-action-bcapps env: GITHUB_TOKEN: ${{ github.token }} with: @@ -158,21 +158,21 @@ jobs: uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 - name: Read settings - uses: microsoft/AL-Go/Actions/ReadSettings@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/ReadSettings@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell get: templateUrl - name: Read secrets id: ReadSecrets - uses: microsoft/AL-Go/Actions/ReadSecrets@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/ReadSecrets@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell gitHubSecrets: ${{ toJson(secrets) }} getSecrets: 'ghTokenWorkflow' - name: Check for updates to AL-Go system files - uses: microsoft/AL-Go/Actions/CheckForUpdates@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/CheckForUpdates@spetersen-microsoft-separate-test-action-bcapps env: GITHUB_TOKEN: ${{ github.token }} with: @@ -253,7 +253,7 @@ jobs: - name: Process AL Code Analysis Logs id: ProcessALCodeAnalysisLogs if: (success() || failure()) - uses: microsoft/AL-Go/Actions/ProcessALCodeAnalysisLogs@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/ProcessALCodeAnalysisLogs@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell @@ -289,13 +289,13 @@ jobs: path: '.artifacts' - name: Read settings - uses: microsoft/AL-Go/Actions/ReadSettings@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/ReadSettings@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell - name: Determine ArtifactUrl id: determineArtifactUrl - uses: microsoft/AL-Go/Actions/DetermineArtifactUrl@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/DetermineArtifactUrl@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell @@ -304,7 +304,7 @@ jobs: uses: actions/configure-pages@45bfe0192ca1faeb007ade9deae92b16b8254a0d # v6.0.0 - name: Build Reference Documentation - uses: microsoft/AL-Go/Actions/BuildReferenceDocumentation@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/BuildReferenceDocumentation@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell artifacts: '.artifacts' @@ -347,7 +347,7 @@ jobs: path: '.artifacts' - name: Read settings - uses: microsoft/AL-Go/Actions/ReadSettings@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/ReadSettings@spetersen-microsoft-separate-test-action-bcapps with: shell: ${{ matrix.shell }} get: type,powerPlatformSolutionFolder @@ -361,7 +361,7 @@ jobs: - name: Read secrets id: ReadSecrets - uses: microsoft/AL-Go/Actions/ReadSecrets@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/ReadSecrets@spetersen-microsoft-separate-test-action-bcapps with: shell: ${{ matrix.shell }} gitHubSecrets: ${{ toJson(secrets) }} @@ -369,7 +369,7 @@ jobs: - name: Deploy to Business Central id: Deploy - uses: microsoft/AL-Go/Actions/Deploy@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/Deploy@spetersen-microsoft-separate-test-action-bcapps env: Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}' with: @@ -381,7 +381,7 @@ jobs: - name: Deploy to Power Platform if: env.type == 'PTE' && env.powerPlatformSolutionFolder != '' - uses: microsoft/AL-Go/Actions/DeployPowerPlatform@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/DeployPowerPlatform@spetersen-microsoft-separate-test-action-bcapps env: Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}' with: @@ -411,20 +411,20 @@ jobs: path: '.artifacts' - name: Read settings - uses: microsoft/AL-Go/Actions/ReadSettings@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/ReadSettings@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell - name: Read secrets id: ReadSecrets - uses: microsoft/AL-Go/Actions/ReadSecrets@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/ReadSecrets@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell gitHubSecrets: ${{ toJson(secrets) }} getSecrets: '${{ matrix.deliveryTarget }}Context' - name: Deliver - uses: microsoft/AL-Go/Actions/Deliver@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/Deliver@spetersen-microsoft-separate-test-action-bcapps env: Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}' with: @@ -444,7 +444,7 @@ jobs: - name: Finalize the workflow id: PostProcess - uses: microsoft/AL-Go/Actions/WorkflowPostProcess@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/WorkflowPostProcess@spetersen-microsoft-separate-test-action-bcapps env: GITHUB_TOKEN: ${{ github.token }} with: diff --git a/.github/workflows/DeployReferenceDocumentation.yaml b/.github/workflows/DeployReferenceDocumentation.yaml index fd98699f05b..4debaa556df 100644 --- a/.github/workflows/DeployReferenceDocumentation.yaml +++ b/.github/workflows/DeployReferenceDocumentation.yaml @@ -30,24 +30,24 @@ jobs: - name: Initialize the workflow id: init - uses: microsoft/AL-Go/Actions/WorkflowInitialize@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/WorkflowInitialize@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell - name: Read settings - uses: microsoft/AL-Go/Actions/ReadSettings@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/ReadSettings@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell - name: Determine ArtifactUrl id: determineArtifactUrl - uses: microsoft/AL-Go/Actions/DetermineArtifactUrl@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/DetermineArtifactUrl@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell - name: Determine Deployment Environments id: DetermineDeploymentEnvironments - uses: microsoft/AL-Go/Actions/DetermineDeploymentEnvironments@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/DetermineDeploymentEnvironments@spetersen-microsoft-separate-test-action-bcapps env: GITHUB_TOKEN: ${{ github.token }} with: @@ -60,7 +60,7 @@ jobs: uses: actions/configure-pages@45bfe0192ca1faeb007ade9deae92b16b8254a0d # v6.0.0 - name: Build Reference Documentation - uses: microsoft/AL-Go/Actions/BuildReferenceDocumentation@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/BuildReferenceDocumentation@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell artifacts: 'latest' @@ -78,7 +78,7 @@ jobs: - name: Finalize the workflow if: always() - uses: microsoft/AL-Go/Actions/WorkflowPostProcess@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/WorkflowPostProcess@spetersen-microsoft-separate-test-action-bcapps env: GITHUB_TOKEN: ${{ github.token }} with: diff --git a/.github/workflows/IncrementVersionNumber.yaml b/.github/workflows/IncrementVersionNumber.yaml index c9f422620bd..907b4eeecb2 100644 --- a/.github/workflows/IncrementVersionNumber.yaml +++ b/.github/workflows/IncrementVersionNumber.yaml @@ -48,7 +48,7 @@ jobs: pull-requests: write steps: - name: Dump Workflow Information - uses: microsoft/AL-Go/Actions/DumpWorkflowInfo@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/DumpWorkflowInfo@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell @@ -57,24 +57,24 @@ jobs: - name: Initialize the workflow id: init - uses: microsoft/AL-Go/Actions/WorkflowInitialize@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/WorkflowInitialize@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell - name: Read settings - uses: microsoft/AL-Go/Actions/ReadSettings@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/ReadSettings@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell - name: Validate Workflow Input if: ${{ github.event_name == 'workflow_dispatch' }} - uses: microsoft/AL-Go/Actions/ValidateWorkflowInput@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/ValidateWorkflowInput@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell - name: Read secrets id: ReadSecrets - uses: microsoft/AL-Go/Actions/ReadSecrets@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/ReadSecrets@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell gitHubSecrets: ${{ toJson(secrets) }} @@ -82,7 +82,7 @@ jobs: useGhTokenWorkflowForPush: '${{ github.event.inputs.useGhTokenWorkflow }}' - name: Increment Version Number - uses: microsoft/AL-Go/Actions/IncrementVersionNumber@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/IncrementVersionNumber@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell token: ${{ steps.ReadSecrets.outputs.TokenForPush }} @@ -93,7 +93,7 @@ jobs: - name: Finalize the workflow if: always() - uses: microsoft/AL-Go/Actions/WorkflowPostProcess@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/WorkflowPostProcess@spetersen-microsoft-separate-test-action-bcapps env: GITHUB_TOKEN: ${{ github.token }} with: diff --git a/.github/workflows/PullRequestHandler.yaml b/.github/workflows/PullRequestHandler.yaml index eb8a3ff8fb2..48ce8c786c6 100644 --- a/.github/workflows/PullRequestHandler.yaml +++ b/.github/workflows/PullRequestHandler.yaml @@ -31,7 +31,7 @@ jobs: if: (github.event.pull_request.base.repo.full_name != github.event.pull_request.head.repo.full_name) && (github.event_name != 'pull_request') runs-on: windows-latest steps: - - uses: microsoft/AL-Go/Actions/VerifyPRChanges@16948d91ca57e875e3d823536bac740c0ca1fdbd + - uses: spetersenms/AL-Go/Actions/VerifyPRChanges@spetersen-microsoft-separate-test-action-bcapps Initialization: needs: [ PregateCheck ] @@ -49,7 +49,7 @@ jobs: trackALAlertsInGitHub: ${{ steps.SetALCodeAnalysisVar.outputs.trackALAlertsInGitHub }} steps: - name: Dump Workflow Information - uses: microsoft/AL-Go/Actions/DumpWorkflowInfo@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/DumpWorkflowInfo@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell @@ -61,13 +61,13 @@ jobs: - name: Initialize the workflow id: init - uses: microsoft/AL-Go/Actions/WorkflowInitialize@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/WorkflowInitialize@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell - name: Read settings id: ReadSettings - uses: microsoft/AL-Go/Actions/ReadSettings@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/ReadSettings@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell get: shortLivedArtifactsRetentionDays,trackALAlertsInGitHub @@ -86,7 +86,7 @@ jobs: - name: Determine Projects To Build id: determineProjectsToBuild - uses: microsoft/AL-Go/Actions/DetermineProjectsToBuild@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/DetermineProjectsToBuild@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell maxBuildDepth: ${{ env.workflowDepth }} @@ -167,7 +167,7 @@ jobs: - name: Process AL Code Analysis Logs id: ProcessALCodeAnalysisLogs if: (success() || failure()) - uses: microsoft/AL-Go/Actions/ProcessALCodeAnalysisLogs@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/ProcessALCodeAnalysisLogs@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell @@ -188,7 +188,7 @@ jobs: steps: - name: Pull Request Status Check id: PullRequestStatusCheck - uses: microsoft/AL-Go/Actions/PullRequestStatusCheck@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/PullRequestStatusCheck@spetersen-microsoft-separate-test-action-bcapps env: GITHUB_TOKEN: ${{ github.token }} with: @@ -196,7 +196,7 @@ jobs: - name: Finalize the workflow id: PostProcess - uses: microsoft/AL-Go/Actions/WorkflowPostProcess@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/WorkflowPostProcess@spetersen-microsoft-separate-test-action-bcapps if: success() || failure() env: GITHUB_TOKEN: ${{ github.token }} diff --git a/.github/workflows/Troubleshooting.yaml b/.github/workflows/Troubleshooting.yaml index 4d3a533b3a4..7c7ca65d5e4 100644 --- a/.github/workflows/Troubleshooting.yaml +++ b/.github/workflows/Troubleshooting.yaml @@ -30,7 +30,7 @@ jobs: lfs: true - name: Troubleshooting - uses: microsoft/AL-Go/Actions/Troubleshooting@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/Troubleshooting@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell gitHubSecrets: ${{ toJson(secrets) }} diff --git a/.github/workflows/UpdateGitHubGoSystemFiles.yaml b/.github/workflows/UpdateGitHubGoSystemFiles.yaml index 504d40998e1..da434ae2665 100644 --- a/.github/workflows/UpdateGitHubGoSystemFiles.yaml +++ b/.github/workflows/UpdateGitHubGoSystemFiles.yaml @@ -4,7 +4,7 @@ on: workflow_dispatch: inputs: templateUrl: - description: Template Repository URL (current is https://github.com/microsoft/AL-Go-PTE@preview) + description: Template Repository URL (current is https://github.com/spetersenms/AL-Go@spetersen-microsoft-separate-test-action-bcapps) required: false default: '' downloadLatest: @@ -26,7 +26,7 @@ on: type: string required: true templateUrl: - description: Template Repository URL (current is https://github.com/microsoft/AL-Go-PTE@preview) + description: Template Repository URL (current is https://github.com/spetersenms/AL-Go@spetersen-microsoft-separate-test-action-bcapps) type: string required: false default: '' @@ -73,14 +73,14 @@ jobs: - name: Read settings id: ReadSettings - uses: microsoft/AL-Go/Actions/ReadSettings@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/ReadSettings@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell get: templateUrl - name: Get Workflow Multi-Run Branches id: GetBranches - uses: microsoft/AL-Go/Actions/GetWorkflowMultiRunBranches@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/GetWorkflowMultiRunBranches@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell workflowEventName: ${{ env.WorkflowEventName }} @@ -111,7 +111,7 @@ jobs: steps: - name: Dump Workflow Information - uses: microsoft/AL-Go/Actions/DumpWorkflowInfo@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/DumpWorkflowInfo@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell @@ -122,19 +122,19 @@ jobs: - name: Initialize the workflow id: init - uses: microsoft/AL-Go/Actions/WorkflowInitialize@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/WorkflowInitialize@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell - name: Read settings - uses: microsoft/AL-Go/Actions/ReadSettings@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/ReadSettings@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell get: commitOptions - name: Read secrets id: ReadSecrets - uses: microsoft/AL-Go/Actions/ReadSecrets@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/ReadSecrets@spetersen-microsoft-separate-test-action-bcapps with: shell: powershell gitHubSecrets: ${{ toJson(secrets) }} @@ -161,7 +161,7 @@ jobs: Add-Content -Encoding UTF8 -Path $env:GITHUB_ENV -Value "downloadLatest=$downloadLatest" - name: Update AL-Go system files - uses: microsoft/AL-Go/Actions/CheckForUpdates@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/CheckForUpdates@spetersen-microsoft-separate-test-action-bcapps env: GITHUB_TOKEN: ${{ github.token }} with: @@ -175,7 +175,7 @@ jobs: - name: Finalize the workflow if: always() - uses: microsoft/AL-Go/Actions/WorkflowPostProcess@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/WorkflowPostProcess@spetersen-microsoft-separate-test-action-bcapps env: GITHUB_TOKEN: ${{ github.token }} with: diff --git a/.github/workflows/_BuildALGoProject.yaml b/.github/workflows/_BuildALGoProject.yaml index 1e34a9ccabe..041a69def28 100644 --- a/.github/workflows/_BuildALGoProject.yaml +++ b/.github/workflows/_BuildALGoProject.yaml @@ -104,7 +104,7 @@ jobs: lfs: true - name: Read settings - uses: microsoft/AL-Go/Actions/ReadSettings@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/ReadSettings@spetersen-microsoft-separate-test-action-bcapps with: shell: ${{ inputs.shell }} project: ${{ inputs.project }} @@ -113,7 +113,7 @@ jobs: - name: Run Build Initialize hook if: hashFiles(format('{0}/.AL-Go/BuildInitialize.ps1', inputs.project)) != '' - uses: microsoft/AL-Go/Actions/RunHook@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/RunHook@spetersen-microsoft-separate-test-action-bcapps with: shell: ${{ inputs.shell }} project: ${{ inputs.project }} @@ -121,7 +121,7 @@ jobs: - name: Determine whether to build project id: DetermineBuildProject - uses: microsoft/AL-Go/Actions/DetermineBuildProject@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/DetermineBuildProject@spetersen-microsoft-separate-test-action-bcapps with: shell: ${{ inputs.shell }} skippedProjectsJson: ${{ inputs.skippedProjectsJson }} @@ -131,7 +131,7 @@ jobs: - name: Read secrets id: ReadSecrets if: steps.DetermineBuildProject.outputs.BuildIt == 'True' - uses: microsoft/AL-Go/Actions/ReadSecrets@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/ReadSecrets@spetersen-microsoft-separate-test-action-bcapps with: shell: ${{ inputs.shell }} gitHubSecrets: ${{ toJson(secrets) }} @@ -149,7 +149,7 @@ jobs: - name: Determine ArtifactUrl id: determineArtifactUrl if: steps.DetermineBuildProject.outputs.BuildIt == 'True' - uses: microsoft/AL-Go/Actions/DetermineArtifactUrl@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/DetermineArtifactUrl@spetersen-microsoft-separate-test-action-bcapps with: shell: ${{ inputs.shell }} project: ${{ inputs.project }} @@ -164,7 +164,7 @@ jobs: - name: Download Project Dependencies id: DownloadProjectDependencies if: steps.DetermineBuildProject.outputs.BuildIt == 'True' - uses: microsoft/AL-Go/Actions/DownloadProjectDependencies@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/DownloadProjectDependencies@spetersen-microsoft-separate-test-action-bcapps env: Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}' with: @@ -177,14 +177,14 @@ jobs: - name: Download Previous Release id: DownloadPreviousRelease if: steps.DetermineBuildProject.outputs.BuildIt == 'True' && env.skipUpgrade == 'False' - uses: microsoft/AL-Go/Actions/DownloadPreviousRelease@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/DownloadPreviousRelease@spetersen-microsoft-separate-test-action-bcapps with: shell: ${{ inputs.shell }} project: ${{ inputs.project }} - name: Compile Apps id: compile - uses: microsoft/AL-Go/Actions/CompileApps@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/CompileApps@spetersen-microsoft-separate-test-action-bcapps if: steps.DetermineBuildProject.outputs.BuildIt == 'True' && fromJson(env.workspaceCompilation).enabled == true env: Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}' @@ -211,7 +211,7 @@ jobs: Add-Content -Encoding UTF8 -Path $env:GITHUB_ENV -Value "NeedsContext=$needsContextPath" - name: Build - uses: microsoft/AL-Go/Actions/RunPipeline@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/RunPipeline@spetersen-microsoft-separate-test-action-bcapps if: steps.DetermineBuildProject.outputs.BuildIt == 'True' env: Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}' @@ -229,7 +229,7 @@ jobs: previousAppsPath: ${{ steps.DownloadPreviousRelease.outputs.PreviousAppsPath }} - name: Run Tests - uses: microsoft/AL-Go/Actions/RunTests@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/RunTests@spetersen-microsoft-separate-test-action-bcapps if: steps.DetermineBuildProject.outputs.BuildIt == 'True' && env.useSeparateTestAction == 'True' env: Secrets: '${{ steps.ReadSecrets.outputs.Secrets }}' @@ -242,7 +242,7 @@ jobs: - name: Sign id: sign if: steps.DetermineBuildProject.outputs.BuildIt == 'True' && inputs.signArtifacts && env.doNotSignApps == 'False' && (env.keyVaultCodesignCertificateName != '' || (fromJson(env.trustedSigning).Endpoint != '' && fromJson(env.trustedSigning).Account != '' && fromJson(env.trustedSigning).CertificateProfile != '')) && (hashFiles(format('{0}/.buildartifacts/Apps/*.app',inputs.project)) != '') - uses: microsoft/AL-Go/Actions/Sign@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/Sign@spetersen-microsoft-separate-test-action-bcapps with: shell: ${{ inputs.shell }} azureCredentialsJson: '${{ fromJson(steps.ReadSecrets.outputs.Secrets).AZURE_CREDENTIALS }}' @@ -250,7 +250,7 @@ jobs: - name: Calculate Artifact names id: calculateArtifactsNames - uses: microsoft/AL-Go/Actions/CalculateArtifactNames@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/CalculateArtifactNames@spetersen-microsoft-separate-test-action-bcapps if: success() || failure() with: shell: ${{ inputs.shell }} @@ -365,7 +365,7 @@ jobs: - name: Analyze Test Results id: analyzeTestResults if: (success() || failure()) && env.doNotRunTests == 'False' - uses: microsoft/AL-Go/Actions/AnalyzeTests@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/AnalyzeTests@spetersen-microsoft-separate-test-action-bcapps with: shell: ${{ inputs.shell }} project: ${{ inputs.project }} @@ -374,7 +374,7 @@ jobs: - name: Analyze BCPT Test Results id: analyzeTestResultsBCPT if: (success() || failure()) && env.doNotRunBcptTests == 'False' - uses: microsoft/AL-Go/Actions/AnalyzeTests@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/AnalyzeTests@spetersen-microsoft-separate-test-action-bcapps with: shell: ${{ inputs.shell }} project: ${{ inputs.project }} @@ -383,7 +383,7 @@ jobs: - name: Analyze Page Scripting Test Results id: analyzeTestResultsPageScripting if: (success() || failure()) && env.doNotRunpageScriptingTests == 'False' - uses: microsoft/AL-Go/Actions/AnalyzeTests@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/AnalyzeTests@spetersen-microsoft-separate-test-action-bcapps with: shell: ${{ inputs.shell }} project: ${{ inputs.project }} @@ -391,7 +391,7 @@ jobs: - name: Cleanup if: always() && steps.DetermineBuildProject.outputs.BuildIt == 'True' - uses: microsoft/AL-Go/Actions/PipelineCleanup@16948d91ca57e875e3d823536bac740c0ca1fdbd + uses: spetersenms/AL-Go/Actions/PipelineCleanup@spetersen-microsoft-separate-test-action-bcapps with: shell: ${{ inputs.shell }} project: ${{ inputs.project }} diff --git a/build/projects/Apps AT/.AL-Go/cloudDevEnv.ps1 b/build/projects/Apps AT/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Apps AT/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Apps AT/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps AT/.AL-Go/localDevEnv.ps1 b/build/projects/Apps AT/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Apps AT/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Apps AT/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps AT/.AL-Go/settings.json b/build/projects/Apps AT/.AL-Go/settings.json index 4d877644604..ca6325c4a77 100644 --- a/build/projects/Apps AT/.AL-Go/settings.json +++ b/build/projects/Apps AT/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Apps AT", "country": "AT", "appFolders": [ diff --git a/build/projects/Apps AU/.AL-Go/cloudDevEnv.ps1 b/build/projects/Apps AU/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Apps AU/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Apps AU/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps AU/.AL-Go/localDevEnv.ps1 b/build/projects/Apps AU/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Apps AU/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Apps AU/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps AU/.AL-Go/settings.json b/build/projects/Apps AU/.AL-Go/settings.json index 0026bfad1d8..2693df4d1b8 100644 --- a/build/projects/Apps AU/.AL-Go/settings.json +++ b/build/projects/Apps AU/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Apps AU", "country": "AU", "appFolders": [ diff --git a/build/projects/Apps BE/.AL-Go/cloudDevEnv.ps1 b/build/projects/Apps BE/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Apps BE/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Apps BE/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps BE/.AL-Go/localDevEnv.ps1 b/build/projects/Apps BE/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Apps BE/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Apps BE/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps BE/.AL-Go/settings.json b/build/projects/Apps BE/.AL-Go/settings.json index 1f078495b58..8d3d018367a 100644 --- a/build/projects/Apps BE/.AL-Go/settings.json +++ b/build/projects/Apps BE/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Apps BE", "country": "BE", "appFolders": [ diff --git a/build/projects/Apps CA/.AL-Go/cloudDevEnv.ps1 b/build/projects/Apps CA/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Apps CA/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Apps CA/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps CA/.AL-Go/localDevEnv.ps1 b/build/projects/Apps CA/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Apps CA/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Apps CA/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps CA/.AL-Go/settings.json b/build/projects/Apps CA/.AL-Go/settings.json index d404e9e10c7..1d9bfb13c7d 100644 --- a/build/projects/Apps CA/.AL-Go/settings.json +++ b/build/projects/Apps CA/.AL-Go/settings.json @@ -1,287 +1,287 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", - "projectName": "Apps CA", - "country": "CA", - "appFolders": [ - "../../../src/Apps/CA/ContosoCoffeeDemoDatasetCA/app", - "../../../src/Apps/CA/EDocument_CA/demo data", - "../../../src/Apps/CA/HybridBCLast_CA/app", - "../../../src/Apps/NA/Ceridian/app", - "../../../src/Apps/NA/EnvestnetYodleeBankFeeds/app", - "../../../src/Apps/NA/ExtendedBankDepositNA/app", - "../../../src/Apps/NA/MX_DIOT/app", - "../../../src/Apps/NA/Onprem Permissions NA/app", - "../../../src/Apps/NA/PEPPOLNA/app", - "../../../src/Apps/US/IRSForms/app", - "../../../src/Apps/W1/AgentDesignExperience/app", - "../../../src/Apps/W1/AgentSamples/app", - "../../../src/Apps/W1/AgentSamples/test", - "../../../src/Apps/W1/AIDevelopmentToolkit/app", - "../../../src/Apps/W1/AIDevelopmentToolkitDesign/app", - "../../../src/Apps/W1/AIDevelopmentToolkitEvaluation/app", - "../../../src/Apps/W1/AMCBanking365Fundamentals/app", - "../../../src/Apps/W1/APIReportsFinance/App", - "../../../src/Apps/W1/APIV1/app", - "../../../src/Apps/W1/APIV2/app", - "../../../src/Apps/W1/AuditFileExport/app", - "../../../src/Apps/W1/BankAccRecWithAI/app", - "../../../src/Apps/W1/BankDeposits/app", - "../../../src/Apps/W1/ClientAddIns/app", - "../../../src/Apps/W1/CompanyHub/app", - "../../../src/Apps/W1/ConnectivityApps/app", - "../../../src/Apps/W1/ContosoCoffeeDemoDataset/app", - "../../../src/Apps/W1/CreateProductInformationWithCopilot/app", - "../../../src/Apps/W1/CrossEnvironmentIntercompany/app", - "../../../src/Apps/W1/DataArchive/App", - "../../../src/Apps/W1/DataCorrectionFA/App", - "../../../src/Apps/W1/DataSearch/App", - "../../../src/Apps/W1/DynamicsGPHistoricalData/app", - "../../../src/Apps/W1/DynamicsGPHistorySmartLists/app", - "../../../src/Apps/W1/DynamicsSLHistoricalData/app", - "../../../src/Apps/W1/EDocument/App", - "../../../src/Apps/W1/EDocument/Demo Data", - "../../../src/Apps/W1/EDocumentConnectors/Avalara/App", - "../../../src/Apps/W1/EDocumentConnectors/B2Brouter/app", - "../../../src/Apps/W1/EDocumentConnectors/Continia/app", - "../../../src/Apps/W1/EDocumentConnectors/ForNAV/App", - "../../../src/Apps/W1/EDocumentConnectors/Logiq/app", - "../../../src/Apps/W1/EDocumentConnectors/Microsoft365/app", - "../../../src/Apps/W1/EDocumentConnectors/Pagero/app", - "../../../src/Apps/W1/EDocumentConnectors/SignUp/app", - "../../../src/Apps/W1/Email - Current User Connector/app", - "../../../src/Apps/W1/Email - Microsoft 365 Connector/app", - "../../../src/Apps/W1/Email - Outlook REST API/app", - "../../../src/Apps/W1/Email - SMTP API/app", - "../../../src/Apps/W1/Email - SMTP Connector/app", - "../../../src/Apps/W1/EmailLogging/app", - "../../../src/Apps/W1/EnforcedDigitalVouchers/app", - "../../../src/Apps/W1/ErrorMessagesWithRecommendations/App", - "../../../src/Apps/W1/ESGStatisticalAccountsDemoTool/app", - "../../../src/Apps/W1/EssentialBusinessHeadlines/App", - "../../../src/Apps/W1/ExcelReports/App", - "../../../src/Apps/W1/ExciseTaxes/app", - "../../../src/Apps/W1/External File Storage - Azure Blob Service Connector/App", - "../../../src/Apps/W1/External File Storage - Azure File Service Connector/App", - "../../../src/Apps/W1/External File Storage - SFTP Connector/App", - "../../../src/Apps/W1/External File Storage - SharePoint Connector/App", - "../../../src/Apps/W1/External Storage - Document Attachments/App", - "../../../src/Apps/W1/ExternalEvents/app", - "../../../src/Apps/W1/FieldServiceIntegration/app", - "../../../src/Apps/W1/HybridAPI/app", - "../../../src/Apps/W1/HybridBaseDeployment/app", - "../../../src/Apps/W1/HybridBC/app", - "../../../src/Apps/W1/HybridBC14/app", - "../../../src/Apps/W1/HybridBC14HistoricalData/app", - "../../../src/Apps/W1/HybridBCLast/app", - "../../../src/Apps/W1/HybridGP/app", - "../../../src/Apps/W1/HybridSL/app", - "../../../src/Apps/W1/ImageAnalysis/app", - "../../../src/Apps/W1/Intrastat/app", - "../../../src/Apps/W1/Intrastat/demo data", - "../../../src/Apps/W1/LatePaymentPredictor/app", - "../../../src/Apps/W1/LibraryNoTransactions/app", - "../../../src/Apps/W1/Manufacturing/app", - "../../../src/Apps/W1/MasterDataManagement/app", - "../../../src/Apps/W1/MicrosoftUniversalPrint/app", - "../../../src/Apps/W1/MSWalletPayments/app", - "../../../src/Apps/W1/OnboardingSignals/app", - "../../../src/Apps/W1/Onprem Permissions/app", - "../../../src/Apps/W1/PayablesAgent/app", - "../../../src/Apps/W1/PaymentPractices/App", - "../../../src/Apps/W1/PayPalPaymentsStandard/app", - "../../../src/Apps/W1/PEPPOL/App", - "../../../src/Apps/W1/PlanConfiguration/app", - "../../../src/Apps/W1/PowerBIReports/App", - "../../../src/Apps/W1/QBMigration/app", - "../../../src/Apps/W1/Quality Management/app", - "../../../src/Apps/W1/Quality Management/Demo Data", - "../../../src/Apps/W1/QuickbooksPayrollFileImport/app", - "../../../src/Apps/W1/RecommendedApps/app", - "../../../src/Apps/W1/ReviewGLEntries/app", - "../../../src/Apps/W1/SalesAndInventoryForecast/app", - "../../../src/Apps/W1/SalesLinesSuggestions/app", - "../../../src/Apps/W1/SalesOrderAgent/app", - "../../../src/Apps/W1/SendToEmailPrinter/App", - "../../../src/Apps/W1/ServiceManagement/app", - "../../../src/Apps/W1/Shopify/App", - "../../../src/Apps/W1/SimplifiedBankStatementImport/App", - "../../../src/Apps/W1/SmartList/app", - "../../../src/Apps/W1/StatisticalAccounts/app", - "../../../src/Apps/W1/Subcontracting/App", - "../../../src/Apps/W1/Subscription Billing/App", - "../../../src/Apps/W1/Subscription Billing/Demo Data", - "../../../src/Apps/W1/Sustainability/app", - "../../../src/Apps/W1/SustainabilityContosoCoffeeDemoDataset/app", - "../../../src/Apps/W1/SustainabilityCopilotSuggestion/app", - "../../../src/Apps/W1/SyncBase/app", - "../../../src/Apps/W1/UKSendRemittanceAdvice/App", - "../../../src/Apps/W1/WithholdingTax/app", - "../../../src/Business Foundation/App", - "../../../src/Business Foundation/Test Library", - "../../../src/Layers/W1/Application", - "../../../src/Layers/W1/BaseApp", - "../../../src/Layers/W1/DemoTool", - "../../../src/Layers/W1/Tests/ApplicationTestLibrary", - "../../../src/System Application/App", - "../../../src/Tools/AI Test Toolkit", - "../../../src/Tools/Performance Toolkit/App", - "../../../src/Tools/Test Framework/Test Libraries/Any", - "../../../src/Tools/Test Framework/Test Libraries/Assert", - "../../../src/Tools/Test Framework/Test Libraries/LibraryAgent", - "../../../src/Tools/Test Framework/Test Libraries/Permissions Mock", - "../../../src/Tools/Test Framework/Test Libraries/Variable Storage", - "../../../src/Tools/Test Framework/Test Runner", - "../../../src/Tools/Test Framework/Test Stability Tools/Prevent Metadata Updates" - ], - "testFolders": [ - "../../../src/Apps/NA/EnvestnetYodleeBankFeeds/test", - "../../../src/Apps/NA/MX_DIOT/test", - "../../../src/Apps/US/IRSForms/test", - "../../../src/Apps/US/IRSForms/test library", - "../../../src/Apps/W1/AMCBanking365Fundamentals/test", - "../../../src/Apps/W1/APIV1/test", - "../../../src/Apps/W1/APIV2/test", - "../../../src/Apps/W1/AuditFileExport/test", - "../../../src/Apps/W1/BankAccRecWithAI/test", - "../../../src/Apps/W1/BankDeposits/test", - "../../../src/Apps/W1/ConnectivityApps/test", - "../../../src/Apps/W1/ContosoCoffeeDemoDataset/test", - "../../../src/Apps/W1/DataArchive/Test", - "../../../src/Apps/W1/DataSearch/Test", - "../../../src/Apps/W1/EDocument/Test", - "../../../src/Apps/W1/EDocumentConnectors/Avalara/Test", - "../../../src/Apps/W1/EDocumentConnectors/B2Brouter/test", - "../../../src/Apps/W1/EDocumentConnectors/Continia/test", - "../../../src/Apps/W1/EDocumentConnectors/ForNav/Test", - "../../../src/Apps/W1/EDocumentConnectors/Logiq/test", - "../../../src/Apps/W1/EDocumentConnectors/Microsoft365/test", - "../../../src/Apps/W1/EDocumentConnectors/Pagero/test", - "../../../src/Apps/W1/EDocumentConnectors/SignUp/test", - "../../../src/Apps/W1/Email - Current User Connector/test", - "../../../src/Apps/W1/Email - Microsoft 365 Connector/test", - "../../../src/Apps/W1/Email - Outlook REST API/test", - "../../../src/Apps/W1/Email - SMTP API/test", - "../../../src/Apps/W1/Email - SMTP API/test library", - "../../../src/Apps/W1/Email - SMTP Connector/test", - "../../../src/Apps/W1/EmailLogging/test", - "../../../src/Apps/W1/EnforcedDigitalVouchers/test", - "../../../src/Apps/W1/EnforcedDigitalVouchers/test library", - "../../../src/Apps/W1/ErrorMessagesWithRecommendations/Test", - "../../../src/Apps/W1/EssentialBusinessHeadlines/Test", - "../../../src/Apps/W1/ExcelReports/Test", - "../../../src/Apps/W1/ExciseTaxes/test", - "../../../src/Apps/W1/ExternalEvents/test", - "../../../src/Apps/W1/FieldServiceIntegration/test", - "../../../src/Apps/W1/FieldServiceIntegration/test library", - "../../../src/Apps/W1/HybridBaseDeployment/test", - "../../../src/Apps/W1/HybridBC/test", - "../../../src/Apps/W1/HybridBC14/test", - "../../../src/Apps/W1/HybridBCLast/test", - "../../../src/Apps/W1/HybridGP/test", - "../../../src/Apps/W1/HybridSL/test", - "../../../src/Apps/W1/ImageAnalysis/test", - "../../../src/Apps/W1/Intrastat/test", - "../../../src/Apps/W1/LatePaymentPredictor/test", - "../../../src/Apps/W1/Manufacturing/test", - "../../../src/Apps/W1/MasterDataManagement/test", - "../../../src/Apps/W1/MasterDataManagement/test library", - "../../../src/Apps/W1/OnboardingSignals/test", - "../../../src/Apps/W1/Onprem Permissions/test", - "../../../src/Apps/W1/PaymentPractices/Test", - "../../../src/Apps/W1/PaymentPractices/Test Library", - "../../../src/Apps/W1/PayPalPaymentsStandard/test", - "../../../src/Apps/W1/PEPPOL/Test", - "../../../src/Apps/W1/PlanConfiguration/test", - "../../../src/Apps/W1/PowerBIReports/Test", - "../../../src/Apps/W1/PowerBIReports/Test Library", - "../../../src/Apps/W1/QBMigration/test", - "../../../src/Apps/W1/Quality Management/test", - "../../../src/Apps/W1/Quality Management/Test Library", - "../../../src/Apps/W1/QuickbooksPayrollFileImport/test", - "../../../src/Apps/W1/RecommendedApps/test", - "../../../src/Apps/W1/ReviewGLEntries/test", - "../../../src/Apps/W1/SalesAndInventoryForecast/test", - "../../../src/Apps/W1/SalesLinesSuggestions/test", - "../../../src/Apps/W1/ServiceManagement/test", - "../../../src/Apps/W1/Shopify/Test", - "../../../src/Apps/W1/SimplifiedBankStatementImport/Test", - "../../../src/Apps/W1/StatisticalAccounts/test", - "../../../src/Apps/W1/Subcontracting/Test", - "../../../src/Apps/W1/Subscription Billing/Test", - "../../../src/Apps/W1/Sustainability/test", - "../../../src/Apps/W1/SustainabilityCopilotSuggestion/test", - "../../../src/Apps/W1/UKSendRemittanceAdvice/Test", - "../../../src/Apps/W1/WithholdingTax/test", - "../../../src/Business Foundation/Test", - "../../../src/Layers/W1/Tests/Bank", - "../../../src/Layers/W1/Tests/BCPT-SampleTests", - "../../../src/Layers/W1/Tests/Cash Flow", - "../../../src/Layers/W1/Tests/Cost Accounting", - "../../../src/Layers/W1/Tests/CRM integration", - "../../../src/Layers/W1/Tests/Data Exchange", - "../../../src/Layers/W1/Tests/Dimension", - "../../../src/Layers/W1/Tests/DotNet-Internal", - "../../../src/Layers/W1/Tests/ERM", - "../../../src/Layers/W1/Tests/Fixed Asset", - "../../../src/Layers/W1/Tests/General Journal", - "../../../src/Layers/W1/Tests/Graph", - "../../../src/Layers/W1/Tests/Integration", - "../../../src/Layers/W1/Tests/Integration-Internal", - "../../../src/Layers/W1/Tests/Job", - "../../../src/Layers/W1/Tests/Local", - "../../../src/Layers/W1/Tests/Marketing", - "../../../src/Layers/W1/Tests/Misc", - "../../../src/Layers/W1/Tests/MOCKSERVICETESTS-Internal", - "../../../src/Layers/W1/Tests/Monitor Sensitive Fields", - "../../../src/Layers/W1/Tests/NewObjectTests-Internal", - "../../../src/Layers/W1/Tests/Permissions", - "../../../src/Layers/W1/Tests/Physical Inventory", - "../../../src/Layers/W1/Tests/Prepayment", - "../../../src/Layers/W1/Tests/Rapid Start", - "../../../src/Layers/W1/Tests/Report", - "../../../src/Layers/W1/Tests/Resource", - "../../../src/Layers/W1/Tests/Reverse", - "../../../src/Layers/W1/Tests/SCM", - "../../../src/Layers/W1/Tests/SCM-Assembly", - "../../../src/Layers/W1/Tests/SCM-Manufacturing", - "../../../src/Layers/W1/Tests/SCM-Service", - "../../../src/Layers/W1/Tests/SINGLESERVER", - "../../../src/Layers/W1/Tests/SMB", - "../../../src/Layers/W1/Tests/TestLibraries", - "../../../src/Layers/W1/Tests/TestRunner-Internal", - "../../../src/Layers/W1/Tests/Upgrade", - "../../../src/Layers/W1/Tests/User", - "../../../src/Layers/W1/Tests/VAT", - "../../../src/Layers/W1/Tests/Workflow", - "../../../src/System Application/Partner Test", - "../../../src/System Application/Test", - "../../../src/System Application/Test Library", - "../../../src/Tools/Performance Toolkit/Test", - "../../../src/Tools/Red Team Scan" - ], - "doNotRunTests": true, - "doNotPublishApps": true, - "ConditionalSettings": [ - { - "branches": [ - "releases/*.[0-5]" - ], - "settings": { - "buildModes": [ - "Strict" - ] - } - }, - { - "branches": [ - "main", - "releases/*.x" - ], - "settings": { - "buildModes": [ - "Clean" - ] - } - } - ] + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", + "projectName": "Apps CA", + "country": "CA", + "appFolders": [ + "../../../src/Apps/CA/ContosoCoffeeDemoDatasetCA/app", + "../../../src/Apps/CA/EDocument_CA/demo data", + "../../../src/Apps/CA/HybridBCLast_CA/app", + "../../../src/Apps/NA/Ceridian/app", + "../../../src/Apps/NA/EnvestnetYodleeBankFeeds/app", + "../../../src/Apps/NA/ExtendedBankDepositNA/app", + "../../../src/Apps/NA/MX_DIOT/app", + "../../../src/Apps/NA/Onprem Permissions NA/app", + "../../../src/Apps/NA/PEPPOLNA/app", + "../../../src/Apps/US/IRSForms/app", + "../../../src/Apps/W1/AgentDesignExperience/app", + "../../../src/Apps/W1/AgentSamples/app", + "../../../src/Apps/W1/AgentSamples/test", + "../../../src/Apps/W1/AIDevelopmentToolkit/app", + "../../../src/Apps/W1/AIDevelopmentToolkitDesign/app", + "../../../src/Apps/W1/AIDevelopmentToolkitEvaluation/app", + "../../../src/Apps/W1/AMCBanking365Fundamentals/app", + "../../../src/Apps/W1/APIReportsFinance/App", + "../../../src/Apps/W1/APIV1/app", + "../../../src/Apps/W1/APIV2/app", + "../../../src/Apps/W1/AuditFileExport/app", + "../../../src/Apps/W1/BankAccRecWithAI/app", + "../../../src/Apps/W1/BankDeposits/app", + "../../../src/Apps/W1/ClientAddIns/app", + "../../../src/Apps/W1/CompanyHub/app", + "../../../src/Apps/W1/ConnectivityApps/app", + "../../../src/Apps/W1/ContosoCoffeeDemoDataset/app", + "../../../src/Apps/W1/CreateProductInformationWithCopilot/app", + "../../../src/Apps/W1/CrossEnvironmentIntercompany/app", + "../../../src/Apps/W1/DataArchive/App", + "../../../src/Apps/W1/DataCorrectionFA/App", + "../../../src/Apps/W1/DataSearch/App", + "../../../src/Apps/W1/DynamicsGPHistoricalData/app", + "../../../src/Apps/W1/DynamicsGPHistorySmartLists/app", + "../../../src/Apps/W1/DynamicsSLHistoricalData/app", + "../../../src/Apps/W1/EDocument/App", + "../../../src/Apps/W1/EDocument/Demo Data", + "../../../src/Apps/W1/EDocumentConnectors/Avalara/App", + "../../../src/Apps/W1/EDocumentConnectors/B2Brouter/app", + "../../../src/Apps/W1/EDocumentConnectors/Continia/app", + "../../../src/Apps/W1/EDocumentConnectors/ForNAV/App", + "../../../src/Apps/W1/EDocumentConnectors/Logiq/app", + "../../../src/Apps/W1/EDocumentConnectors/Microsoft365/app", + "../../../src/Apps/W1/EDocumentConnectors/Pagero/app", + "../../../src/Apps/W1/EDocumentConnectors/SignUp/app", + "../../../src/Apps/W1/Email - Current User Connector/app", + "../../../src/Apps/W1/Email - Microsoft 365 Connector/app", + "../../../src/Apps/W1/Email - Outlook REST API/app", + "../../../src/Apps/W1/Email - SMTP API/app", + "../../../src/Apps/W1/Email - SMTP Connector/app", + "../../../src/Apps/W1/EmailLogging/app", + "../../../src/Apps/W1/EnforcedDigitalVouchers/app", + "../../../src/Apps/W1/ErrorMessagesWithRecommendations/App", + "../../../src/Apps/W1/ESGStatisticalAccountsDemoTool/app", + "../../../src/Apps/W1/EssentialBusinessHeadlines/App", + "../../../src/Apps/W1/ExcelReports/App", + "../../../src/Apps/W1/ExciseTaxes/app", + "../../../src/Apps/W1/External File Storage - Azure Blob Service Connector/App", + "../../../src/Apps/W1/External File Storage - Azure File Service Connector/App", + "../../../src/Apps/W1/External File Storage - SFTP Connector/App", + "../../../src/Apps/W1/External File Storage - SharePoint Connector/App", + "../../../src/Apps/W1/External Storage - Document Attachments/App", + "../../../src/Apps/W1/ExternalEvents/app", + "../../../src/Apps/W1/FieldServiceIntegration/app", + "../../../src/Apps/W1/HybridAPI/app", + "../../../src/Apps/W1/HybridBaseDeployment/app", + "../../../src/Apps/W1/HybridBC/app", + "../../../src/Apps/W1/HybridBC14/app", + "../../../src/Apps/W1/HybridBC14HistoricalData/app", + "../../../src/Apps/W1/HybridBCLast/app", + "../../../src/Apps/W1/HybridGP/app", + "../../../src/Apps/W1/HybridSL/app", + "../../../src/Apps/W1/ImageAnalysis/app", + "../../../src/Apps/W1/Intrastat/app", + "../../../src/Apps/W1/Intrastat/demo data", + "../../../src/Apps/W1/LatePaymentPredictor/app", + "../../../src/Apps/W1/LibraryNoTransactions/app", + "../../../src/Apps/W1/Manufacturing/app", + "../../../src/Apps/W1/MasterDataManagement/app", + "../../../src/Apps/W1/MicrosoftUniversalPrint/app", + "../../../src/Apps/W1/MSWalletPayments/app", + "../../../src/Apps/W1/OnboardingSignals/app", + "../../../src/Apps/W1/Onprem Permissions/app", + "../../../src/Apps/W1/PayablesAgent/app", + "../../../src/Apps/W1/PaymentPractices/App", + "../../../src/Apps/W1/PayPalPaymentsStandard/app", + "../../../src/Apps/W1/PEPPOL/App", + "../../../src/Apps/W1/PlanConfiguration/app", + "../../../src/Apps/W1/PowerBIReports/App", + "../../../src/Apps/W1/QBMigration/app", + "../../../src/Apps/W1/Quality Management/app", + "../../../src/Apps/W1/Quality Management/Demo Data", + "../../../src/Apps/W1/QuickbooksPayrollFileImport/app", + "../../../src/Apps/W1/RecommendedApps/app", + "../../../src/Apps/W1/ReviewGLEntries/app", + "../../../src/Apps/W1/SalesAndInventoryForecast/app", + "../../../src/Apps/W1/SalesLinesSuggestions/app", + "../../../src/Apps/W1/SalesOrderAgent/app", + "../../../src/Apps/W1/SendToEmailPrinter/App", + "../../../src/Apps/W1/ServiceManagement/app", + "../../../src/Apps/W1/Shopify/App", + "../../../src/Apps/W1/SimplifiedBankStatementImport/App", + "../../../src/Apps/W1/SmartList/app", + "../../../src/Apps/W1/StatisticalAccounts/app", + "../../../src/Apps/W1/Subcontracting/App", + "../../../src/Apps/W1/Subscription Billing/App", + "../../../src/Apps/W1/Subscription Billing/Demo Data", + "../../../src/Apps/W1/Sustainability/app", + "../../../src/Apps/W1/SustainabilityContosoCoffeeDemoDataset/app", + "../../../src/Apps/W1/SustainabilityCopilotSuggestion/app", + "../../../src/Apps/W1/SyncBase/app", + "../../../src/Apps/W1/UKSendRemittanceAdvice/App", + "../../../src/Apps/W1/WithholdingTax/app", + "../../../src/Business Foundation/App", + "../../../src/Business Foundation/Test Library", + "../../../src/Layers/W1/Application", + "../../../src/Layers/W1/BaseApp", + "../../../src/Layers/W1/DemoTool", + "../../../src/Layers/W1/Tests/ApplicationTestLibrary", + "../../../src/System Application/App", + "../../../src/Tools/AI Test Toolkit", + "../../../src/Tools/Performance Toolkit/App", + "../../../src/Tools/Test Framework/Test Libraries/Any", + "../../../src/Tools/Test Framework/Test Libraries/Assert", + "../../../src/Tools/Test Framework/Test Libraries/LibraryAgent", + "../../../src/Tools/Test Framework/Test Libraries/Permissions Mock", + "../../../src/Tools/Test Framework/Test Libraries/Variable Storage", + "../../../src/Tools/Test Framework/Test Runner", + "../../../src/Tools/Test Framework/Test Stability Tools/Prevent Metadata Updates" + ], + "testFolders": [ + "../../../src/Apps/NA/EnvestnetYodleeBankFeeds/test", + "../../../src/Apps/NA/MX_DIOT/test", + "../../../src/Apps/US/IRSForms/test", + "../../../src/Apps/US/IRSForms/test library", + "../../../src/Apps/W1/AMCBanking365Fundamentals/test", + "../../../src/Apps/W1/APIV1/test", + "../../../src/Apps/W1/APIV2/test", + "../../../src/Apps/W1/AuditFileExport/test", + "../../../src/Apps/W1/BankAccRecWithAI/test", + "../../../src/Apps/W1/BankDeposits/test", + "../../../src/Apps/W1/ConnectivityApps/test", + "../../../src/Apps/W1/ContosoCoffeeDemoDataset/test", + "../../../src/Apps/W1/DataArchive/Test", + "../../../src/Apps/W1/DataSearch/Test", + "../../../src/Apps/W1/EDocument/Test", + "../../../src/Apps/W1/EDocumentConnectors/Avalara/Test", + "../../../src/Apps/W1/EDocumentConnectors/B2Brouter/test", + "../../../src/Apps/W1/EDocumentConnectors/Continia/test", + "../../../src/Apps/W1/EDocumentConnectors/ForNav/Test", + "../../../src/Apps/W1/EDocumentConnectors/Logiq/test", + "../../../src/Apps/W1/EDocumentConnectors/Microsoft365/test", + "../../../src/Apps/W1/EDocumentConnectors/Pagero/test", + "../../../src/Apps/W1/EDocumentConnectors/SignUp/test", + "../../../src/Apps/W1/Email - Current User Connector/test", + "../../../src/Apps/W1/Email - Microsoft 365 Connector/test", + "../../../src/Apps/W1/Email - Outlook REST API/test", + "../../../src/Apps/W1/Email - SMTP API/test", + "../../../src/Apps/W1/Email - SMTP API/test library", + "../../../src/Apps/W1/Email - SMTP Connector/test", + "../../../src/Apps/W1/EmailLogging/test", + "../../../src/Apps/W1/EnforcedDigitalVouchers/test", + "../../../src/Apps/W1/EnforcedDigitalVouchers/test library", + "../../../src/Apps/W1/ErrorMessagesWithRecommendations/Test", + "../../../src/Apps/W1/EssentialBusinessHeadlines/Test", + "../../../src/Apps/W1/ExcelReports/Test", + "../../../src/Apps/W1/ExciseTaxes/test", + "../../../src/Apps/W1/ExternalEvents/test", + "../../../src/Apps/W1/FieldServiceIntegration/test", + "../../../src/Apps/W1/FieldServiceIntegration/test library", + "../../../src/Apps/W1/HybridBaseDeployment/test", + "../../../src/Apps/W1/HybridBC/test", + "../../../src/Apps/W1/HybridBC14/test", + "../../../src/Apps/W1/HybridBCLast/test", + "../../../src/Apps/W1/HybridGP/test", + "../../../src/Apps/W1/HybridSL/test", + "../../../src/Apps/W1/ImageAnalysis/test", + "../../../src/Apps/W1/Intrastat/test", + "../../../src/Apps/W1/LatePaymentPredictor/test", + "../../../src/Apps/W1/Manufacturing/test", + "../../../src/Apps/W1/MasterDataManagement/test", + "../../../src/Apps/W1/MasterDataManagement/test library", + "../../../src/Apps/W1/OnboardingSignals/test", + "../../../src/Apps/W1/Onprem Permissions/test", + "../../../src/Apps/W1/PaymentPractices/Test", + "../../../src/Apps/W1/PaymentPractices/Test Library", + "../../../src/Apps/W1/PayPalPaymentsStandard/test", + "../../../src/Apps/W1/PEPPOL/Test", + "../../../src/Apps/W1/PlanConfiguration/test", + "../../../src/Apps/W1/PowerBIReports/Test", + "../../../src/Apps/W1/PowerBIReports/Test Library", + "../../../src/Apps/W1/QBMigration/test", + "../../../src/Apps/W1/Quality Management/test", + "../../../src/Apps/W1/Quality Management/Test Library", + "../../../src/Apps/W1/QuickbooksPayrollFileImport/test", + "../../../src/Apps/W1/RecommendedApps/test", + "../../../src/Apps/W1/ReviewGLEntries/test", + "../../../src/Apps/W1/SalesAndInventoryForecast/test", + "../../../src/Apps/W1/SalesLinesSuggestions/test", + "../../../src/Apps/W1/ServiceManagement/test", + "../../../src/Apps/W1/Shopify/Test", + "../../../src/Apps/W1/SimplifiedBankStatementImport/Test", + "../../../src/Apps/W1/StatisticalAccounts/test", + "../../../src/Apps/W1/Subcontracting/Test", + "../../../src/Apps/W1/Subscription Billing/Test", + "../../../src/Apps/W1/Sustainability/test", + "../../../src/Apps/W1/SustainabilityCopilotSuggestion/test", + "../../../src/Apps/W1/UKSendRemittanceAdvice/Test", + "../../../src/Apps/W1/WithholdingTax/test", + "../../../src/Business Foundation/Test", + "../../../src/Layers/W1/Tests/Bank", + "../../../src/Layers/W1/Tests/BCPT-SampleTests", + "../../../src/Layers/W1/Tests/Cash Flow", + "../../../src/Layers/W1/Tests/Cost Accounting", + "../../../src/Layers/W1/Tests/CRM integration", + "../../../src/Layers/W1/Tests/Data Exchange", + "../../../src/Layers/W1/Tests/Dimension", + "../../../src/Layers/W1/Tests/DotNet-Internal", + "../../../src/Layers/W1/Tests/ERM", + "../../../src/Layers/W1/Tests/Fixed Asset", + "../../../src/Layers/W1/Tests/General Journal", + "../../../src/Layers/W1/Tests/Graph", + "../../../src/Layers/W1/Tests/Integration", + "../../../src/Layers/W1/Tests/Integration-Internal", + "../../../src/Layers/W1/Tests/Job", + "../../../src/Layers/W1/Tests/Local", + "../../../src/Layers/W1/Tests/Marketing", + "../../../src/Layers/W1/Tests/Misc", + "../../../src/Layers/W1/Tests/MOCKSERVICETESTS-Internal", + "../../../src/Layers/W1/Tests/Monitor Sensitive Fields", + "../../../src/Layers/W1/Tests/NewObjectTests-Internal", + "../../../src/Layers/W1/Tests/Permissions", + "../../../src/Layers/W1/Tests/Physical Inventory", + "../../../src/Layers/W1/Tests/Prepayment", + "../../../src/Layers/W1/Tests/Rapid Start", + "../../../src/Layers/W1/Tests/Report", + "../../../src/Layers/W1/Tests/Resource", + "../../../src/Layers/W1/Tests/Reverse", + "../../../src/Layers/W1/Tests/SCM", + "../../../src/Layers/W1/Tests/SCM-Assembly", + "../../../src/Layers/W1/Tests/SCM-Manufacturing", + "../../../src/Layers/W1/Tests/SCM-Service", + "../../../src/Layers/W1/Tests/SINGLESERVER", + "../../../src/Layers/W1/Tests/SMB", + "../../../src/Layers/W1/Tests/TestLibraries", + "../../../src/Layers/W1/Tests/TestRunner-Internal", + "../../../src/Layers/W1/Tests/Upgrade", + "../../../src/Layers/W1/Tests/User", + "../../../src/Layers/W1/Tests/VAT", + "../../../src/Layers/W1/Tests/Workflow", + "../../../src/System Application/Partner Test", + "../../../src/System Application/Test", + "../../../src/System Application/Test Library", + "../../../src/Tools/Performance Toolkit/Test", + "../../../src/Tools/Red Team Scan" + ], + "doNotRunTests": true, + "doNotPublishApps": true, + "ConditionalSettings": [ + { + "branches": [ + "releases/*.[0-5]" + ], + "settings": { + "buildModes": [ + "Strict" + ] + } + }, + { + "branches": [ + "main", + "releases/*.x" + ], + "settings": { + "buildModes": [ + "Clean" + ] + } + } + ] } diff --git a/build/projects/Apps CH/.AL-Go/cloudDevEnv.ps1 b/build/projects/Apps CH/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Apps CH/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Apps CH/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps CH/.AL-Go/localDevEnv.ps1 b/build/projects/Apps CH/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Apps CH/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Apps CH/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps CH/.AL-Go/settings.json b/build/projects/Apps CH/.AL-Go/settings.json index efaba1f091a..9880a063b22 100644 --- a/build/projects/Apps CH/.AL-Go/settings.json +++ b/build/projects/Apps CH/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Apps CH", "country": "CH", "appFolders": [ diff --git a/build/projects/Apps CZ/.AL-Go/cloudDevEnv.ps1 b/build/projects/Apps CZ/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Apps CZ/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Apps CZ/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps CZ/.AL-Go/localDevEnv.ps1 b/build/projects/Apps CZ/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Apps CZ/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Apps CZ/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps CZ/.AL-Go/settings.json b/build/projects/Apps CZ/.AL-Go/settings.json index 195a402e32f..5f8e4d28fde 100644 --- a/build/projects/Apps CZ/.AL-Go/settings.json +++ b/build/projects/Apps CZ/.AL-Go/settings.json @@ -1,288 +1,288 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", - "projectName": "Apps CZ", - "country": "CZ", - "appFolders": [ - "../../../src/Apps/CZ/AdvancedLocalizationPack/app", - "../../../src/Apps/CZ/AdvancePaymentsLocalization/app", - "../../../src/Apps/CZ/AdvancePaymentsLocalization/demo data", - "../../../src/Apps/CZ/BankingDocumentsLocalization/app", - "../../../src/Apps/CZ/BankingDocumentsLocalization/demo data", - "../../../src/Apps/CZ/CashDeskLocalization/app", - "../../../src/Apps/CZ/CashDeskLocalization/demo data", - "../../../src/Apps/CZ/CompensationLocalization/app", - "../../../src/Apps/CZ/CompensationLocalization/demo data", - "../../../src/Apps/CZ/ContosoCoffeeDemoDatasetCZ/app", - "../../../src/Apps/CZ/CoreLocalizationPack/app", - "../../../src/Apps/CZ/EDocument_CZ/demo data", - "../../../src/Apps/CZ/FixedAssetLocalization/app", - "../../../src/Apps/CZ/FixedAssetLocalization/demo data", - "../../../src/Apps/CZ/HybridBCLast_CZ/app", - "../../../src/Apps/CZ/IntrastatCZ/app", - "../../../src/Apps/CZ/IntrastatCZ/demo data", - "../../../src/Apps/CZ/Onprem Permissions CZ/app", - "../../../src/Apps/W1/AgentDesignExperience/app", - "../../../src/Apps/W1/AgentSamples/app", - "../../../src/Apps/W1/AgentSamples/test", - "../../../src/Apps/W1/AIDevelopmentToolkit/app", - "../../../src/Apps/W1/AIDevelopmentToolkitDesign/app", - "../../../src/Apps/W1/AIDevelopmentToolkitEvaluation/app", - "../../../src/Apps/W1/AMCBanking365Fundamentals/app", - "../../../src/Apps/W1/APIReportsFinance/App", - "../../../src/Apps/W1/APIV1/app", - "../../../src/Apps/W1/APIV2/app", - "../../../src/Apps/W1/AuditFileExport/app", - "../../../src/Apps/W1/BankAccRecWithAI/app", - "../../../src/Apps/W1/BankDeposits/app", - "../../../src/Apps/W1/ClientAddIns/app", - "../../../src/Apps/W1/CompanyHub/app", - "../../../src/Apps/W1/ConnectivityApps/app", - "../../../src/Apps/W1/ContosoCoffeeDemoDataset/app", - "../../../src/Apps/W1/CreateProductInformationWithCopilot/app", - "../../../src/Apps/W1/CrossEnvironmentIntercompany/app", - "../../../src/Apps/W1/DataArchive/App", - "../../../src/Apps/W1/DataCorrectionFA/App", - "../../../src/Apps/W1/DataSearch/App", - "../../../src/Apps/W1/EDocument/App", - "../../../src/Apps/W1/EDocument/Demo Data", - "../../../src/Apps/W1/EDocumentConnectors/Avalara/App", - "../../../src/Apps/W1/EDocumentConnectors/B2Brouter/app", - "../../../src/Apps/W1/EDocumentConnectors/Continia/app", - "../../../src/Apps/W1/EDocumentConnectors/ForNAV/App", - "../../../src/Apps/W1/EDocumentConnectors/Logiq/app", - "../../../src/Apps/W1/EDocumentConnectors/Microsoft365/app", - "../../../src/Apps/W1/EDocumentConnectors/Pagero/app", - "../../../src/Apps/W1/EDocumentConnectors/SignUp/app", - "../../../src/Apps/W1/Email - Current User Connector/app", - "../../../src/Apps/W1/Email - Microsoft 365 Connector/app", - "../../../src/Apps/W1/Email - Outlook REST API/app", - "../../../src/Apps/W1/Email - SMTP API/app", - "../../../src/Apps/W1/Email - SMTP Connector/app", - "../../../src/Apps/W1/EmailLogging/app", - "../../../src/Apps/W1/EnforcedDigitalVouchers/app", - "../../../src/Apps/W1/ErrorMessagesWithRecommendations/App", - "../../../src/Apps/W1/ESGStatisticalAccountsDemoTool/app", - "../../../src/Apps/W1/EssentialBusinessHeadlines/App", - "../../../src/Apps/W1/EU3PartyTradePurchase/app", - "../../../src/Apps/W1/ExcelReports/App", - "../../../src/Apps/W1/ExciseTaxes/app", - "../../../src/Apps/W1/External File Storage - Azure Blob Service Connector/App", - "../../../src/Apps/W1/External File Storage - Azure File Service Connector/App", - "../../../src/Apps/W1/External File Storage - SFTP Connector/App", - "../../../src/Apps/W1/External File Storage - SharePoint Connector/App", - "../../../src/Apps/W1/External Storage - Document Attachments/App", - "../../../src/Apps/W1/ExternalEvents/app", - "../../../src/Apps/W1/FieldServiceIntegration/app", - "../../../src/Apps/W1/HybridAPI/app", - "../../../src/Apps/W1/HybridBaseDeployment/app", - "../../../src/Apps/W1/HybridBC/app", - "../../../src/Apps/W1/HybridBC14/app", - "../../../src/Apps/W1/HybridBC14HistoricalData/app", - "../../../src/Apps/W1/HybridBCLast/app", - "../../../src/Apps/W1/Intrastat/app", - "../../../src/Apps/W1/Intrastat/demo data", - "../../../src/Apps/W1/LatePaymentPredictor/app", - "../../../src/Apps/W1/LibraryNoTransactions/app", - "../../../src/Apps/W1/Manufacturing/app", - "../../../src/Apps/W1/MasterDataManagement/app", - "../../../src/Apps/W1/MicrosoftUniversalPrint/app", - "../../../src/Apps/W1/MSWalletPayments/app", - "../../../src/Apps/W1/OnboardingSignals/app", - "../../../src/Apps/W1/Onprem Permissions/app", - "../../../src/Apps/W1/PayablesAgent/app", - "../../../src/Apps/W1/PaymentPractices/App", - "../../../src/Apps/W1/PayPalPaymentsStandard/app", - "../../../src/Apps/W1/PEPPOL/App", - "../../../src/Apps/W1/PlanConfiguration/app", - "../../../src/Apps/W1/PowerBIReports/App", - "../../../src/Apps/W1/Quality Management/app", - "../../../src/Apps/W1/Quality Management/Demo Data", - "../../../src/Apps/W1/RecommendedApps/app", - "../../../src/Apps/W1/ReviewGLEntries/app", - "../../../src/Apps/W1/SAF-T/app", - "../../../src/Apps/W1/SalesAndInventoryForecast/app", - "../../../src/Apps/W1/SalesLinesSuggestions/app", - "../../../src/Apps/W1/SalesOrderAgent/app", - "../../../src/Apps/W1/SendToEmailPrinter/App", - "../../../src/Apps/W1/ServiceManagement/app", - "../../../src/Apps/W1/Shopify/App", - "../../../src/Apps/W1/SimplifiedBankStatementImport/App", - "../../../src/Apps/W1/SmartList/app", - "../../../src/Apps/W1/StatisticalAccounts/app", - "../../../src/Apps/W1/Subcontracting/App", - "../../../src/Apps/W1/Subscription Billing/App", - "../../../src/Apps/W1/Sustainability/app", - "../../../src/Apps/W1/SustainabilityContosoCoffeeDemoDataset/app", - "../../../src/Apps/W1/SustainabilityCopilotSuggestion/app", - "../../../src/Apps/W1/SyncBase/app", - "../../../src/Apps/W1/VATGroupManagement/app", - "../../../src/Apps/W1/WithholdingTax/app", - "../../../src/Business Foundation/App", - "../../../src/Business Foundation/Test Library", - "../../../src/Layers/W1/Application", - "../../../src/Layers/W1/BaseApp", - "../../../src/Layers/W1/DemoTool", - "../../../src/Layers/W1/Tests/ApplicationTestLibrary", - "../../../src/System Application/App", - "../../../src/Tools/AI Test Toolkit", - "../../../src/Tools/Performance Toolkit/App", - "../../../src/Tools/Test Framework/Test Libraries/Any", - "../../../src/Tools/Test Framework/Test Libraries/Assert", - "../../../src/Tools/Test Framework/Test Libraries/LibraryAgent", - "../../../src/Tools/Test Framework/Test Libraries/Permissions Mock", - "../../../src/Tools/Test Framework/Test Libraries/Variable Storage", - "../../../src/Tools/Test Framework/Test Runner", - "../../../src/Tools/Test Framework/Test Stability Tools/Prevent Metadata Updates" - ], - "testFolders": [ - "../../../src/Apps/CZ/AdvancedLocalizationPack/test", - "../../../src/Apps/CZ/AdvancePaymentsLocalization/test", - "../../../src/Apps/CZ/BankingDocumentsLocalization/test", - "../../../src/Apps/CZ/CashDeskLocalization/test", - "../../../src/Apps/CZ/CompensationLocalization/test", - "../../../src/Apps/CZ/CoreLocalizationPack/test", - "../../../src/Apps/CZ/FixedAssetLocalization/test", - "../../../src/Apps/CZ/IntrastatCZ/test", - "../../../src/Apps/W1/AMCBanking365Fundamentals/test", - "../../../src/Apps/W1/APIV1/test", - "../../../src/Apps/W1/APIV2/test", - "../../../src/Apps/W1/AuditFileExport/test", - "../../../src/Apps/W1/BankAccRecWithAI/test", - "../../../src/Apps/W1/BankDeposits/test", - "../../../src/Apps/W1/ConnectivityApps/test", - "../../../src/Apps/W1/ContosoCoffeeDemoDataset/test", - "../../../src/Apps/W1/DataArchive/Test", - "../../../src/Apps/W1/DataSearch/Test", - "../../../src/Apps/W1/EDocument/Test", - "../../../src/Apps/W1/EDocumentConnectors/Avalara/Test", - "../../../src/Apps/W1/EDocumentConnectors/B2Brouter/test", - "../../../src/Apps/W1/EDocumentConnectors/Continia/test", - "../../../src/Apps/W1/EDocumentConnectors/ForNav/Test", - "../../../src/Apps/W1/EDocumentConnectors/Logiq/test", - "../../../src/Apps/W1/EDocumentConnectors/Microsoft365/test", - "../../../src/Apps/W1/EDocumentConnectors/Pagero/test", - "../../../src/Apps/W1/EDocumentConnectors/SignUp/test", - "../../../src/Apps/W1/Email - Current User Connector/test", - "../../../src/Apps/W1/Email - Microsoft 365 Connector/test", - "../../../src/Apps/W1/Email - Outlook REST API/test", - "../../../src/Apps/W1/Email - SMTP API/test", - "../../../src/Apps/W1/Email - SMTP API/test library", - "../../../src/Apps/W1/Email - SMTP Connector/test", - "../../../src/Apps/W1/EmailLogging/test", - "../../../src/Apps/W1/EnforcedDigitalVouchers/test", - "../../../src/Apps/W1/EnforcedDigitalVouchers/test library", - "../../../src/Apps/W1/ErrorMessagesWithRecommendations/Test", - "../../../src/Apps/W1/EssentialBusinessHeadlines/Test", - "../../../src/Apps/W1/EU3PartyTradePurchase/test", - "../../../src/Apps/W1/ExcelReports/Test", - "../../../src/Apps/W1/ExciseTaxes/test", - "../../../src/Apps/W1/ExternalEvents/test", - "../../../src/Apps/W1/FieldServiceIntegration/test", - "../../../src/Apps/W1/FieldServiceIntegration/test library", - "../../../src/Apps/W1/HybridBaseDeployment/test", - "../../../src/Apps/W1/HybridBC/test", - "../../../src/Apps/W1/HybridBC14/test", - "../../../src/Apps/W1/HybridBCLast/test", - "../../../src/Apps/W1/LatePaymentPredictor/test", - "../../../src/Apps/W1/Manufacturing/test", - "../../../src/Apps/W1/MasterDataManagement/test", - "../../../src/Apps/W1/MasterDataManagement/test library", - "../../../src/Apps/W1/OnboardingSignals/test", - "../../../src/Apps/W1/Onprem Permissions/test", - "../../../src/Apps/W1/PaymentPractices/Test", - "../../../src/Apps/W1/PaymentPractices/Test Library", - "../../../src/Apps/W1/PayPalPaymentsStandard/test", - "../../../src/Apps/W1/PEPPOL/Test", - "../../../src/Apps/W1/PlanConfiguration/test", - "../../../src/Apps/W1/PowerBIReports/Test", - "../../../src/Apps/W1/PowerBIReports/Test Library", - "../../../src/Apps/W1/Quality Management/test", - "../../../src/Apps/W1/Quality Management/Test Library", - "../../../src/Apps/W1/RecommendedApps/test", - "../../../src/Apps/W1/ReviewGLEntries/test", - "../../../src/Apps/W1/SAF-T/test", - "../../../src/Apps/W1/SalesAndInventoryForecast/test", - "../../../src/Apps/W1/SalesLinesSuggestions/test", - "../../../src/Apps/W1/ServiceManagement/test", - "../../../src/Apps/W1/Shopify/Test", - "../../../src/Apps/W1/SimplifiedBankStatementImport/Test", - "../../../src/Apps/W1/StatisticalAccounts/test", - "../../../src/Apps/W1/Subcontracting/Test", - "../../../src/Apps/W1/Subscription Billing/Test", - "../../../src/Apps/W1/Sustainability/test", - "../../../src/Apps/W1/SustainabilityCopilotSuggestion/test", - "../../../src/Apps/W1/VATGroupManagement/test", - "../../../src/Apps/W1/WithholdingTax/test", - "../../../src/Business Foundation/Test", - "../../../src/Layers/W1/Tests/Bank", - "../../../src/Layers/W1/Tests/BCPT-SampleTests", - "../../../src/Layers/W1/Tests/Cash Flow", - "../../../src/Layers/W1/Tests/Cost Accounting", - "../../../src/Layers/W1/Tests/CRM integration", - "../../../src/Layers/W1/Tests/Data Exchange", - "../../../src/Layers/W1/Tests/Dimension", - "../../../src/Layers/W1/Tests/DotNet-Internal", - "../../../src/Layers/W1/Tests/ERM", - "../../../src/Layers/W1/Tests/Fixed Asset", - "../../../src/Layers/W1/Tests/General Journal", - "../../../src/Layers/W1/Tests/Graph", - "../../../src/Layers/W1/Tests/Integration", - "../../../src/Layers/W1/Tests/Integration-Internal", - "../../../src/Layers/W1/Tests/Job", - "../../../src/Layers/W1/Tests/Local", - "../../../src/Layers/W1/Tests/Marketing", - "../../../src/Layers/W1/Tests/Misc", - "../../../src/Layers/W1/Tests/MOCKSERVICETESTS-Internal", - "../../../src/Layers/W1/Tests/Monitor Sensitive Fields", - "../../../src/Layers/W1/Tests/NewObjectTests-Internal", - "../../../src/Layers/W1/Tests/Permissions", - "../../../src/Layers/W1/Tests/Physical Inventory", - "../../../src/Layers/W1/Tests/Prepayment", - "../../../src/Layers/W1/Tests/Rapid Start", - "../../../src/Layers/W1/Tests/Report", - "../../../src/Layers/W1/Tests/Resource", - "../../../src/Layers/W1/Tests/Reverse", - "../../../src/Layers/W1/Tests/SCM", - "../../../src/Layers/W1/Tests/SCM-Assembly", - "../../../src/Layers/W1/Tests/SCM-Manufacturing", - "../../../src/Layers/W1/Tests/SCM-Service", - "../../../src/Layers/W1/Tests/SINGLESERVER", - "../../../src/Layers/W1/Tests/SMB", - "../../../src/Layers/W1/Tests/TestLibraries", - "../../../src/Layers/W1/Tests/TestRunner-Internal", - "../../../src/Layers/W1/Tests/Upgrade", - "../../../src/Layers/W1/Tests/User", - "../../../src/Layers/W1/Tests/VAT", - "../../../src/Layers/W1/Tests/Workflow", - "../../../src/System Application/Partner Test", - "../../../src/System Application/Test", - "../../../src/System Application/Test Library", - "../../../src/Tools/Performance Toolkit/Test", - "../../../src/Tools/Red Team Scan" - ], - "doNotRunTests": true, - "doNotPublishApps": true, - "ConditionalSettings": [ - { - "branches": [ - "releases/*.[0-5]" - ], - "settings": { - "buildModes": [ - "Strict" - ] - } - }, - { - "branches": [ - "main", - "releases/*.x" - ], - "settings": { - "buildModes": [ - "Clean" - ] - } - } - ] + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", + "projectName": "Apps CZ", + "country": "CZ", + "appFolders": [ + "../../../src/Apps/CZ/AdvancedLocalizationPack/app", + "../../../src/Apps/CZ/AdvancePaymentsLocalization/app", + "../../../src/Apps/CZ/AdvancePaymentsLocalization/demo data", + "../../../src/Apps/CZ/BankingDocumentsLocalization/app", + "../../../src/Apps/CZ/BankingDocumentsLocalization/demo data", + "../../../src/Apps/CZ/CashDeskLocalization/app", + "../../../src/Apps/CZ/CashDeskLocalization/demo data", + "../../../src/Apps/CZ/CompensationLocalization/app", + "../../../src/Apps/CZ/CompensationLocalization/demo data", + "../../../src/Apps/CZ/ContosoCoffeeDemoDatasetCZ/app", + "../../../src/Apps/CZ/CoreLocalizationPack/app", + "../../../src/Apps/CZ/EDocument_CZ/demo data", + "../../../src/Apps/CZ/FixedAssetLocalization/app", + "../../../src/Apps/CZ/FixedAssetLocalization/demo data", + "../../../src/Apps/CZ/HybridBCLast_CZ/app", + "../../../src/Apps/CZ/IntrastatCZ/app", + "../../../src/Apps/CZ/IntrastatCZ/demo data", + "../../../src/Apps/CZ/Onprem Permissions CZ/app", + "../../../src/Apps/W1/AgentDesignExperience/app", + "../../../src/Apps/W1/AgentSamples/app", + "../../../src/Apps/W1/AgentSamples/test", + "../../../src/Apps/W1/AIDevelopmentToolkit/app", + "../../../src/Apps/W1/AIDevelopmentToolkitDesign/app", + "../../../src/Apps/W1/AIDevelopmentToolkitEvaluation/app", + "../../../src/Apps/W1/AMCBanking365Fundamentals/app", + "../../../src/Apps/W1/APIReportsFinance/App", + "../../../src/Apps/W1/APIV1/app", + "../../../src/Apps/W1/APIV2/app", + "../../../src/Apps/W1/AuditFileExport/app", + "../../../src/Apps/W1/BankAccRecWithAI/app", + "../../../src/Apps/W1/BankDeposits/app", + "../../../src/Apps/W1/ClientAddIns/app", + "../../../src/Apps/W1/CompanyHub/app", + "../../../src/Apps/W1/ConnectivityApps/app", + "../../../src/Apps/W1/ContosoCoffeeDemoDataset/app", + "../../../src/Apps/W1/CreateProductInformationWithCopilot/app", + "../../../src/Apps/W1/CrossEnvironmentIntercompany/app", + "../../../src/Apps/W1/DataArchive/App", + "../../../src/Apps/W1/DataCorrectionFA/App", + "../../../src/Apps/W1/DataSearch/App", + "../../../src/Apps/W1/EDocument/App", + "../../../src/Apps/W1/EDocument/Demo Data", + "../../../src/Apps/W1/EDocumentConnectors/Avalara/App", + "../../../src/Apps/W1/EDocumentConnectors/B2Brouter/app", + "../../../src/Apps/W1/EDocumentConnectors/Continia/app", + "../../../src/Apps/W1/EDocumentConnectors/ForNAV/App", + "../../../src/Apps/W1/EDocumentConnectors/Logiq/app", + "../../../src/Apps/W1/EDocumentConnectors/Microsoft365/app", + "../../../src/Apps/W1/EDocumentConnectors/Pagero/app", + "../../../src/Apps/W1/EDocumentConnectors/SignUp/app", + "../../../src/Apps/W1/Email - Current User Connector/app", + "../../../src/Apps/W1/Email - Microsoft 365 Connector/app", + "../../../src/Apps/W1/Email - Outlook REST API/app", + "../../../src/Apps/W1/Email - SMTP API/app", + "../../../src/Apps/W1/Email - SMTP Connector/app", + "../../../src/Apps/W1/EmailLogging/app", + "../../../src/Apps/W1/EnforcedDigitalVouchers/app", + "../../../src/Apps/W1/ErrorMessagesWithRecommendations/App", + "../../../src/Apps/W1/ESGStatisticalAccountsDemoTool/app", + "../../../src/Apps/W1/EssentialBusinessHeadlines/App", + "../../../src/Apps/W1/EU3PartyTradePurchase/app", + "../../../src/Apps/W1/ExcelReports/App", + "../../../src/Apps/W1/ExciseTaxes/app", + "../../../src/Apps/W1/External File Storage - Azure Blob Service Connector/App", + "../../../src/Apps/W1/External File Storage - Azure File Service Connector/App", + "../../../src/Apps/W1/External File Storage - SFTP Connector/App", + "../../../src/Apps/W1/External File Storage - SharePoint Connector/App", + "../../../src/Apps/W1/External Storage - Document Attachments/App", + "../../../src/Apps/W1/ExternalEvents/app", + "../../../src/Apps/W1/FieldServiceIntegration/app", + "../../../src/Apps/W1/HybridAPI/app", + "../../../src/Apps/W1/HybridBaseDeployment/app", + "../../../src/Apps/W1/HybridBC/app", + "../../../src/Apps/W1/HybridBC14/app", + "../../../src/Apps/W1/HybridBC14HistoricalData/app", + "../../../src/Apps/W1/HybridBCLast/app", + "../../../src/Apps/W1/Intrastat/app", + "../../../src/Apps/W1/Intrastat/demo data", + "../../../src/Apps/W1/LatePaymentPredictor/app", + "../../../src/Apps/W1/LibraryNoTransactions/app", + "../../../src/Apps/W1/Manufacturing/app", + "../../../src/Apps/W1/MasterDataManagement/app", + "../../../src/Apps/W1/MicrosoftUniversalPrint/app", + "../../../src/Apps/W1/MSWalletPayments/app", + "../../../src/Apps/W1/OnboardingSignals/app", + "../../../src/Apps/W1/Onprem Permissions/app", + "../../../src/Apps/W1/PayablesAgent/app", + "../../../src/Apps/W1/PaymentPractices/App", + "../../../src/Apps/W1/PayPalPaymentsStandard/app", + "../../../src/Apps/W1/PEPPOL/App", + "../../../src/Apps/W1/PlanConfiguration/app", + "../../../src/Apps/W1/PowerBIReports/App", + "../../../src/Apps/W1/Quality Management/app", + "../../../src/Apps/W1/Quality Management/Demo Data", + "../../../src/Apps/W1/RecommendedApps/app", + "../../../src/Apps/W1/ReviewGLEntries/app", + "../../../src/Apps/W1/SAF-T/app", + "../../../src/Apps/W1/SalesAndInventoryForecast/app", + "../../../src/Apps/W1/SalesLinesSuggestions/app", + "../../../src/Apps/W1/SalesOrderAgent/app", + "../../../src/Apps/W1/SendToEmailPrinter/App", + "../../../src/Apps/W1/ServiceManagement/app", + "../../../src/Apps/W1/Shopify/App", + "../../../src/Apps/W1/SimplifiedBankStatementImport/App", + "../../../src/Apps/W1/SmartList/app", + "../../../src/Apps/W1/StatisticalAccounts/app", + "../../../src/Apps/W1/Subcontracting/App", + "../../../src/Apps/W1/Subscription Billing/App", + "../../../src/Apps/W1/Sustainability/app", + "../../../src/Apps/W1/SustainabilityContosoCoffeeDemoDataset/app", + "../../../src/Apps/W1/SustainabilityCopilotSuggestion/app", + "../../../src/Apps/W1/SyncBase/app", + "../../../src/Apps/W1/VATGroupManagement/app", + "../../../src/Apps/W1/WithholdingTax/app", + "../../../src/Business Foundation/App", + "../../../src/Business Foundation/Test Library", + "../../../src/Layers/W1/Application", + "../../../src/Layers/W1/BaseApp", + "../../../src/Layers/W1/DemoTool", + "../../../src/Layers/W1/Tests/ApplicationTestLibrary", + "../../../src/System Application/App", + "../../../src/Tools/AI Test Toolkit", + "../../../src/Tools/Performance Toolkit/App", + "../../../src/Tools/Test Framework/Test Libraries/Any", + "../../../src/Tools/Test Framework/Test Libraries/Assert", + "../../../src/Tools/Test Framework/Test Libraries/LibraryAgent", + "../../../src/Tools/Test Framework/Test Libraries/Permissions Mock", + "../../../src/Tools/Test Framework/Test Libraries/Variable Storage", + "../../../src/Tools/Test Framework/Test Runner", + "../../../src/Tools/Test Framework/Test Stability Tools/Prevent Metadata Updates" + ], + "testFolders": [ + "../../../src/Apps/CZ/AdvancedLocalizationPack/test", + "../../../src/Apps/CZ/AdvancePaymentsLocalization/test", + "../../../src/Apps/CZ/BankingDocumentsLocalization/test", + "../../../src/Apps/CZ/CashDeskLocalization/test", + "../../../src/Apps/CZ/CompensationLocalization/test", + "../../../src/Apps/CZ/CoreLocalizationPack/test", + "../../../src/Apps/CZ/FixedAssetLocalization/test", + "../../../src/Apps/CZ/IntrastatCZ/test", + "../../../src/Apps/W1/AMCBanking365Fundamentals/test", + "../../../src/Apps/W1/APIV1/test", + "../../../src/Apps/W1/APIV2/test", + "../../../src/Apps/W1/AuditFileExport/test", + "../../../src/Apps/W1/BankAccRecWithAI/test", + "../../../src/Apps/W1/BankDeposits/test", + "../../../src/Apps/W1/ConnectivityApps/test", + "../../../src/Apps/W1/ContosoCoffeeDemoDataset/test", + "../../../src/Apps/W1/DataArchive/Test", + "../../../src/Apps/W1/DataSearch/Test", + "../../../src/Apps/W1/EDocument/Test", + "../../../src/Apps/W1/EDocumentConnectors/Avalara/Test", + "../../../src/Apps/W1/EDocumentConnectors/B2Brouter/test", + "../../../src/Apps/W1/EDocumentConnectors/Continia/test", + "../../../src/Apps/W1/EDocumentConnectors/ForNav/Test", + "../../../src/Apps/W1/EDocumentConnectors/Logiq/test", + "../../../src/Apps/W1/EDocumentConnectors/Microsoft365/test", + "../../../src/Apps/W1/EDocumentConnectors/Pagero/test", + "../../../src/Apps/W1/EDocumentConnectors/SignUp/test", + "../../../src/Apps/W1/Email - Current User Connector/test", + "../../../src/Apps/W1/Email - Microsoft 365 Connector/test", + "../../../src/Apps/W1/Email - Outlook REST API/test", + "../../../src/Apps/W1/Email - SMTP API/test", + "../../../src/Apps/W1/Email - SMTP API/test library", + "../../../src/Apps/W1/Email - SMTP Connector/test", + "../../../src/Apps/W1/EmailLogging/test", + "../../../src/Apps/W1/EnforcedDigitalVouchers/test", + "../../../src/Apps/W1/EnforcedDigitalVouchers/test library", + "../../../src/Apps/W1/ErrorMessagesWithRecommendations/Test", + "../../../src/Apps/W1/EssentialBusinessHeadlines/Test", + "../../../src/Apps/W1/EU3PartyTradePurchase/test", + "../../../src/Apps/W1/ExcelReports/Test", + "../../../src/Apps/W1/ExciseTaxes/test", + "../../../src/Apps/W1/ExternalEvents/test", + "../../../src/Apps/W1/FieldServiceIntegration/test", + "../../../src/Apps/W1/FieldServiceIntegration/test library", + "../../../src/Apps/W1/HybridBaseDeployment/test", + "../../../src/Apps/W1/HybridBC/test", + "../../../src/Apps/W1/HybridBC14/test", + "../../../src/Apps/W1/HybridBCLast/test", + "../../../src/Apps/W1/LatePaymentPredictor/test", + "../../../src/Apps/W1/Manufacturing/test", + "../../../src/Apps/W1/MasterDataManagement/test", + "../../../src/Apps/W1/MasterDataManagement/test library", + "../../../src/Apps/W1/OnboardingSignals/test", + "../../../src/Apps/W1/Onprem Permissions/test", + "../../../src/Apps/W1/PaymentPractices/Test", + "../../../src/Apps/W1/PaymentPractices/Test Library", + "../../../src/Apps/W1/PayPalPaymentsStandard/test", + "../../../src/Apps/W1/PEPPOL/Test", + "../../../src/Apps/W1/PlanConfiguration/test", + "../../../src/Apps/W1/PowerBIReports/Test", + "../../../src/Apps/W1/PowerBIReports/Test Library", + "../../../src/Apps/W1/Quality Management/test", + "../../../src/Apps/W1/Quality Management/Test Library", + "../../../src/Apps/W1/RecommendedApps/test", + "../../../src/Apps/W1/ReviewGLEntries/test", + "../../../src/Apps/W1/SAF-T/test", + "../../../src/Apps/W1/SalesAndInventoryForecast/test", + "../../../src/Apps/W1/SalesLinesSuggestions/test", + "../../../src/Apps/W1/ServiceManagement/test", + "../../../src/Apps/W1/Shopify/Test", + "../../../src/Apps/W1/SimplifiedBankStatementImport/Test", + "../../../src/Apps/W1/StatisticalAccounts/test", + "../../../src/Apps/W1/Subcontracting/Test", + "../../../src/Apps/W1/Subscription Billing/Test", + "../../../src/Apps/W1/Sustainability/test", + "../../../src/Apps/W1/SustainabilityCopilotSuggestion/test", + "../../../src/Apps/W1/VATGroupManagement/test", + "../../../src/Apps/W1/WithholdingTax/test", + "../../../src/Business Foundation/Test", + "../../../src/Layers/W1/Tests/Bank", + "../../../src/Layers/W1/Tests/BCPT-SampleTests", + "../../../src/Layers/W1/Tests/Cash Flow", + "../../../src/Layers/W1/Tests/Cost Accounting", + "../../../src/Layers/W1/Tests/CRM integration", + "../../../src/Layers/W1/Tests/Data Exchange", + "../../../src/Layers/W1/Tests/Dimension", + "../../../src/Layers/W1/Tests/DotNet-Internal", + "../../../src/Layers/W1/Tests/ERM", + "../../../src/Layers/W1/Tests/Fixed Asset", + "../../../src/Layers/W1/Tests/General Journal", + "../../../src/Layers/W1/Tests/Graph", + "../../../src/Layers/W1/Tests/Integration", + "../../../src/Layers/W1/Tests/Integration-Internal", + "../../../src/Layers/W1/Tests/Job", + "../../../src/Layers/W1/Tests/Local", + "../../../src/Layers/W1/Tests/Marketing", + "../../../src/Layers/W1/Tests/Misc", + "../../../src/Layers/W1/Tests/MOCKSERVICETESTS-Internal", + "../../../src/Layers/W1/Tests/Monitor Sensitive Fields", + "../../../src/Layers/W1/Tests/NewObjectTests-Internal", + "../../../src/Layers/W1/Tests/Permissions", + "../../../src/Layers/W1/Tests/Physical Inventory", + "../../../src/Layers/W1/Tests/Prepayment", + "../../../src/Layers/W1/Tests/Rapid Start", + "../../../src/Layers/W1/Tests/Report", + "../../../src/Layers/W1/Tests/Resource", + "../../../src/Layers/W1/Tests/Reverse", + "../../../src/Layers/W1/Tests/SCM", + "../../../src/Layers/W1/Tests/SCM-Assembly", + "../../../src/Layers/W1/Tests/SCM-Manufacturing", + "../../../src/Layers/W1/Tests/SCM-Service", + "../../../src/Layers/W1/Tests/SINGLESERVER", + "../../../src/Layers/W1/Tests/SMB", + "../../../src/Layers/W1/Tests/TestLibraries", + "../../../src/Layers/W1/Tests/TestRunner-Internal", + "../../../src/Layers/W1/Tests/Upgrade", + "../../../src/Layers/W1/Tests/User", + "../../../src/Layers/W1/Tests/VAT", + "../../../src/Layers/W1/Tests/Workflow", + "../../../src/System Application/Partner Test", + "../../../src/System Application/Test", + "../../../src/System Application/Test Library", + "../../../src/Tools/Performance Toolkit/Test", + "../../../src/Tools/Red Team Scan" + ], + "doNotRunTests": true, + "doNotPublishApps": true, + "ConditionalSettings": [ + { + "branches": [ + "releases/*.[0-5]" + ], + "settings": { + "buildModes": [ + "Strict" + ] + } + }, + { + "branches": [ + "main", + "releases/*.x" + ], + "settings": { + "buildModes": [ + "Clean" + ] + } + } + ] } diff --git a/build/projects/Apps DE/.AL-Go/cloudDevEnv.ps1 b/build/projects/Apps DE/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Apps DE/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Apps DE/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps DE/.AL-Go/localDevEnv.ps1 b/build/projects/Apps DE/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Apps DE/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Apps DE/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps DE/.AL-Go/settings.json b/build/projects/Apps DE/.AL-Go/settings.json index 2063f5a60bb..8f98d5ea1f2 100644 --- a/build/projects/Apps DE/.AL-Go/settings.json +++ b/build/projects/Apps DE/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Apps DE", "country": "DE", "appFolders": [ diff --git a/build/projects/Apps DK/.AL-Go/cloudDevEnv.ps1 b/build/projects/Apps DK/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Apps DK/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Apps DK/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps DK/.AL-Go/localDevEnv.ps1 b/build/projects/Apps DK/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Apps DK/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Apps DK/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps DK/.AL-Go/settings.json b/build/projects/Apps DK/.AL-Go/settings.json index 80ae9a6a2bd..09f0a5fcdf4 100644 --- a/build/projects/Apps DK/.AL-Go/settings.json +++ b/build/projects/Apps DK/.AL-Go/settings.json @@ -1,292 +1,292 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", - "projectName": "Apps DK", - "country": "DK", - "appFolders": [ - "../../../src/Apps/DK/C52012DataMigration/app", - "../../../src/Apps/DK/ContosoCoffeeDemoDatasetDK/app", - "../../../src/Apps/DK/DKCore/app", - "../../../src/Apps/DK/EDocument_DK/demo data", - "../../../src/Apps/DK/EDocumentFormatOIOUBL/app", - "../../../src/Apps/DK/ElectronicVATDeclarationDK/app", - "../../../src/Apps/DK/EnforcedDigitalVouchersDK/app", - "../../../src/Apps/DK/FIK/app", - "../../../src/Apps/DK/ImportDKPayroll/app", - "../../../src/Apps/DK/NemhandelNotification/app", - "../../../src/Apps/DK/OIOUBL/app", - "../../../src/Apps/DK/SAFTModificationDK/app", - "../../../src/Apps/DK/VATReportsDK/app", - "../../../src/Apps/W1/AgentDesignExperience/app", - "../../../src/Apps/W1/AgentSamples/app", - "../../../src/Apps/W1/AgentSamples/test", - "../../../src/Apps/W1/AIDevelopmentToolkit/app", - "../../../src/Apps/W1/AIDevelopmentToolkitDesign/app", - "../../../src/Apps/W1/AIDevelopmentToolkitEvaluation/app", - "../../../src/Apps/W1/AMCBanking365Fundamentals/app", - "../../../src/Apps/W1/APIReportsFinance/App", - "../../../src/Apps/W1/APIV1/app", - "../../../src/Apps/W1/APIV2/app", - "../../../src/Apps/W1/AuditFileExport/app", - "../../../src/Apps/W1/BankAccRecWithAI/app", - "../../../src/Apps/W1/BankDeposits/app", - "../../../src/Apps/W1/BasicExperience/app", - "../../../src/Apps/W1/ClientAddIns/app", - "../../../src/Apps/W1/CompanyHub/app", - "../../../src/Apps/W1/ConnectivityApps/app", - "../../../src/Apps/W1/ContosoCoffeeDemoDataset/app", - "../../../src/Apps/W1/CreateProductInformationWithCopilot/app", - "../../../src/Apps/W1/CrossEnvironmentIntercompany/app", - "../../../src/Apps/W1/DataArchive/App", - "../../../src/Apps/W1/DataCorrectionFA/App", - "../../../src/Apps/W1/DataSearch/App", - "../../../src/Apps/W1/EDocument/App", - "../../../src/Apps/W1/EDocument/Demo Data", - "../../../src/Apps/W1/EDocumentConnectors/Avalara/App", - "../../../src/Apps/W1/EDocumentConnectors/B2Brouter/app", - "../../../src/Apps/W1/EDocumentConnectors/Continia/app", - "../../../src/Apps/W1/EDocumentConnectors/ForNAV/App", - "../../../src/Apps/W1/EDocumentConnectors/Logiq/app", - "../../../src/Apps/W1/EDocumentConnectors/Microsoft365/app", - "../../../src/Apps/W1/EDocumentConnectors/Pagero/app", - "../../../src/Apps/W1/EDocumentConnectors/SignUp/app", - "../../../src/Apps/W1/Email - Current User Connector/app", - "../../../src/Apps/W1/Email - Microsoft 365 Connector/app", - "../../../src/Apps/W1/Email - Outlook REST API/app", - "../../../src/Apps/W1/Email - SMTP API/app", - "../../../src/Apps/W1/Email - SMTP Connector/app", - "../../../src/Apps/W1/EmailLogging/app", - "../../../src/Apps/W1/EnforcedDigitalVouchers/app", - "../../../src/Apps/W1/ErrorMessagesWithRecommendations/App", - "../../../src/Apps/W1/ESGStatisticalAccountsDemoTool/app", - "../../../src/Apps/W1/EssentialBusinessHeadlines/App", - "../../../src/Apps/W1/EU3PartyTradePurchase/app", - "../../../src/Apps/W1/ExcelReports/App", - "../../../src/Apps/W1/ExciseTaxes/app", - "../../../src/Apps/W1/External File Storage - Azure Blob Service Connector/App", - "../../../src/Apps/W1/External File Storage - Azure File Service Connector/App", - "../../../src/Apps/W1/External File Storage - SFTP Connector/App", - "../../../src/Apps/W1/External File Storage - SharePoint Connector/App", - "../../../src/Apps/W1/External Storage - Document Attachments/App", - "../../../src/Apps/W1/ExternalEvents/app", - "../../../src/Apps/W1/FieldServiceIntegration/app", - "../../../src/Apps/W1/HybridAPI/app", - "../../../src/Apps/W1/HybridBaseDeployment/app", - "../../../src/Apps/W1/HybridBC/app", - "../../../src/Apps/W1/HybridBC14/app", - "../../../src/Apps/W1/HybridBC14HistoricalData/app", - "../../../src/Apps/W1/HybridBCLast/app", - "../../../src/Apps/W1/Intrastat/app", - "../../../src/Apps/W1/Intrastat/demo data", - "../../../src/Apps/W1/LatePaymentPredictor/app", - "../../../src/Apps/W1/LibraryNoTransactions/app", - "../../../src/Apps/W1/Manufacturing/app", - "../../../src/Apps/W1/MasterDataManagement/app", - "../../../src/Apps/W1/MicrosoftUniversalPrint/app", - "../../../src/Apps/W1/MSWalletPayments/app", - "../../../src/Apps/W1/OnboardingSignals/app", - "../../../src/Apps/W1/Onprem Permissions/app", - "../../../src/Apps/W1/PayablesAgent/app", - "../../../src/Apps/W1/PaymentPractices/App", - "../../../src/Apps/W1/PayPalPaymentsStandard/app", - "../../../src/Apps/W1/PEPPOL/App", - "../../../src/Apps/W1/PlanConfiguration/app", - "../../../src/Apps/W1/PowerBIReports/App", - "../../../src/Apps/W1/Quality Management/app", - "../../../src/Apps/W1/Quality Management/Demo Data", - "../../../src/Apps/W1/RecommendedApps/app", - "../../../src/Apps/W1/ReviewGLEntries/app", - "../../../src/Apps/W1/SAF-T/app", - "../../../src/Apps/W1/SalesAndInventoryForecast/app", - "../../../src/Apps/W1/SalesLinesSuggestions/app", - "../../../src/Apps/W1/SalesOrderAgent/app", - "../../../src/Apps/W1/SendToEmailPrinter/App", - "../../../src/Apps/W1/ServiceDeclaration/app", - "../../../src/Apps/W1/ServiceManagement/app", - "../../../src/Apps/W1/Shopify/App", - "../../../src/Apps/W1/SimplifiedBankStatementImport/App", - "../../../src/Apps/W1/SmartList/app", - "../../../src/Apps/W1/StatisticalAccounts/app", - "../../../src/Apps/W1/Subcontracting/App", - "../../../src/Apps/W1/Subscription Billing/App", - "../../../src/Apps/W1/Subscription Billing/Demo Data", - "../../../src/Apps/W1/Sustainability/app", - "../../../src/Apps/W1/SustainabilityContosoCoffeeDemoDataset/app", - "../../../src/Apps/W1/SustainabilityCopilotSuggestion/app", - "../../../src/Apps/W1/SyncBase/app", - "../../../src/Apps/W1/TransactionStorage/App", - "../../../src/Apps/W1/VATGroupManagement/app", - "../../../src/Apps/W1/WithholdingTax/app", - "../../../src/Business Foundation/App", - "../../../src/Business Foundation/Test Library", - "../../../src/Layers/W1/Application", - "../../../src/Layers/W1/BaseApp", - "../../../src/Layers/W1/DemoTool", - "../../../src/Layers/W1/Tests/ApplicationTestLibrary", - "../../../src/System Application/App", - "../../../src/Tools/AI Test Toolkit", - "../../../src/Tools/Performance Toolkit/App", - "../../../src/Tools/Test Framework/Test Libraries/Any", - "../../../src/Tools/Test Framework/Test Libraries/Assert", - "../../../src/Tools/Test Framework/Test Libraries/LibraryAgent", - "../../../src/Tools/Test Framework/Test Libraries/Permissions Mock", - "../../../src/Tools/Test Framework/Test Libraries/Variable Storage", - "../../../src/Tools/Test Framework/Test Runner", - "../../../src/Tools/Test Framework/Test Stability Tools/Prevent Metadata Updates" - ], - "testFolders": [ - "../../../src/Apps/DK/C52012DataMigration/test", - "../../../src/Apps/DK/DKCore/test", - "../../../src/Apps/DK/ElectronicVATDeclarationDK/test", - "../../../src/Apps/DK/EnforcedDigitalVouchersDK/test", - "../../../src/Apps/DK/FIK/test", - "../../../src/Apps/DK/ImportDKPayroll/test", - "../../../src/Apps/DK/NemhandelNotification/test", - "../../../src/Apps/DK/OIOUBL/test", - "../../../src/Apps/DK/SAFTModificationDK/test", - "../../../src/Apps/DK/VATReportsDK/test", - "../../../src/Apps/W1/AMCBanking365Fundamentals/test", - "../../../src/Apps/W1/APIV1/test", - "../../../src/Apps/W1/APIV2/test", - "../../../src/Apps/W1/AuditFileExport/test", - "../../../src/Apps/W1/BankAccRecWithAI/test", - "../../../src/Apps/W1/BankDeposits/test", - "../../../src/Apps/W1/BasicExperience/test", - "../../../src/Apps/W1/ConnectivityApps/test", - "../../../src/Apps/W1/ContosoCoffeeDemoDataset/test", - "../../../src/Apps/W1/DataArchive/Test", - "../../../src/Apps/W1/DataSearch/Test", - "../../../src/Apps/W1/EDocument/Test", - "../../../src/Apps/W1/EDocumentConnectors/Avalara/Test", - "../../../src/Apps/W1/EDocumentConnectors/B2Brouter/test", - "../../../src/Apps/W1/EDocumentConnectors/Continia/test", - "../../../src/Apps/W1/EDocumentConnectors/ForNav/Test", - "../../../src/Apps/W1/EDocumentConnectors/Logiq/test", - "../../../src/Apps/W1/EDocumentConnectors/Microsoft365/test", - "../../../src/Apps/W1/EDocumentConnectors/Pagero/test", - "../../../src/Apps/W1/EDocumentConnectors/SignUp/test", - "../../../src/Apps/W1/Email - Current User Connector/test", - "../../../src/Apps/W1/Email - Microsoft 365 Connector/test", - "../../../src/Apps/W1/Email - Outlook REST API/test", - "../../../src/Apps/W1/Email - SMTP API/test", - "../../../src/Apps/W1/Email - SMTP API/test library", - "../../../src/Apps/W1/Email - SMTP Connector/test", - "../../../src/Apps/W1/EmailLogging/test", - "../../../src/Apps/W1/EnforcedDigitalVouchers/test", - "../../../src/Apps/W1/EnforcedDigitalVouchers/test library", - "../../../src/Apps/W1/ErrorMessagesWithRecommendations/Test", - "../../../src/Apps/W1/EssentialBusinessHeadlines/Test", - "../../../src/Apps/W1/EU3PartyTradePurchase/test", - "../../../src/Apps/W1/ExcelReports/Test", - "../../../src/Apps/W1/ExciseTaxes/test", - "../../../src/Apps/W1/ExternalEvents/test", - "../../../src/Apps/W1/FieldServiceIntegration/test", - "../../../src/Apps/W1/FieldServiceIntegration/test library", - "../../../src/Apps/W1/HybridBaseDeployment/test", - "../../../src/Apps/W1/HybridBC/test", - "../../../src/Apps/W1/HybridBC14/test", - "../../../src/Apps/W1/HybridBCLast/test", - "../../../src/Apps/W1/Intrastat/test", - "../../../src/Apps/W1/LatePaymentPredictor/test", - "../../../src/Apps/W1/Manufacturing/test", - "../../../src/Apps/W1/MasterDataManagement/test", - "../../../src/Apps/W1/MasterDataManagement/test library", - "../../../src/Apps/W1/OnboardingSignals/test", - "../../../src/Apps/W1/Onprem Permissions/test", - "../../../src/Apps/W1/PaymentPractices/Test", - "../../../src/Apps/W1/PaymentPractices/Test Library", - "../../../src/Apps/W1/PayPalPaymentsStandard/test", - "../../../src/Apps/W1/PEPPOL/Test", - "../../../src/Apps/W1/PlanConfiguration/test", - "../../../src/Apps/W1/PowerBIReports/Test", - "../../../src/Apps/W1/PowerBIReports/Test Library", - "../../../src/Apps/W1/Quality Management/test", - "../../../src/Apps/W1/Quality Management/Test Library", - "../../../src/Apps/W1/RecommendedApps/test", - "../../../src/Apps/W1/ReviewGLEntries/test", - "../../../src/Apps/W1/SAF-T/test", - "../../../src/Apps/W1/SalesAndInventoryForecast/test", - "../../../src/Apps/W1/SalesLinesSuggestions/test", - "../../../src/Apps/W1/ServiceDeclaration/test", - "../../../src/Apps/W1/ServiceManagement/test", - "../../../src/Apps/W1/Shopify/Test", - "../../../src/Apps/W1/SimplifiedBankStatementImport/Test", - "../../../src/Apps/W1/StatisticalAccounts/test", - "../../../src/Apps/W1/Subcontracting/Test", - "../../../src/Apps/W1/Subscription Billing/Test", - "../../../src/Apps/W1/Sustainability/test", - "../../../src/Apps/W1/SustainabilityCopilotSuggestion/test", - "../../../src/Apps/W1/VATGroupManagement/test", - "../../../src/Apps/W1/WithholdingTax/test", - "../../../src/Business Foundation/Test", - "../../../src/Layers/W1/Tests/Bank", - "../../../src/Layers/W1/Tests/BCPT-SampleTests", - "../../../src/Layers/W1/Tests/Cash Flow", - "../../../src/Layers/W1/Tests/Cost Accounting", - "../../../src/Layers/W1/Tests/CRM integration", - "../../../src/Layers/W1/Tests/Data Exchange", - "../../../src/Layers/W1/Tests/Dimension", - "../../../src/Layers/W1/Tests/DotNet-Internal", - "../../../src/Layers/W1/Tests/ERM", - "../../../src/Layers/W1/Tests/Fixed Asset", - "../../../src/Layers/W1/Tests/General Journal", - "../../../src/Layers/W1/Tests/Graph", - "../../../src/Layers/W1/Tests/Integration", - "../../../src/Layers/W1/Tests/Integration-Internal", - "../../../src/Layers/W1/Tests/Job", - "../../../src/Layers/W1/Tests/Local", - "../../../src/Layers/W1/Tests/Marketing", - "../../../src/Layers/W1/Tests/Misc", - "../../../src/Layers/W1/Tests/MOCKSERVICETESTS-Internal", - "../../../src/Layers/W1/Tests/Monitor Sensitive Fields", - "../../../src/Layers/W1/Tests/NewObjectTests-Internal", - "../../../src/Layers/W1/Tests/Permissions", - "../../../src/Layers/W1/Tests/Physical Inventory", - "../../../src/Layers/W1/Tests/Prepayment", - "../../../src/Layers/W1/Tests/Rapid Start", - "../../../src/Layers/W1/Tests/Report", - "../../../src/Layers/W1/Tests/Resource", - "../../../src/Layers/W1/Tests/Reverse", - "../../../src/Layers/W1/Tests/SCM", - "../../../src/Layers/W1/Tests/SCM-Assembly", - "../../../src/Layers/W1/Tests/SCM-Manufacturing", - "../../../src/Layers/W1/Tests/SCM-Service", - "../../../src/Layers/W1/Tests/SINGLESERVER", - "../../../src/Layers/W1/Tests/SMB", - "../../../src/Layers/W1/Tests/TestLibraries", - "../../../src/Layers/W1/Tests/TestRunner-Internal", - "../../../src/Layers/W1/Tests/Upgrade", - "../../../src/Layers/W1/Tests/User", - "../../../src/Layers/W1/Tests/VAT", - "../../../src/Layers/W1/Tests/Workflow", - "../../../src/System Application/Partner Test", - "../../../src/System Application/Test", - "../../../src/System Application/Test Library", - "../../../src/Tools/Performance Toolkit/Test", - "../../../src/Tools/Red Team Scan" - ], - "doNotRunTests": true, - "doNotPublishApps": true, - "ConditionalSettings": [ - { - "branches": [ - "releases/*.[0-5]" - ], - "settings": { - "buildModes": [ - "Strict" - ] - } - }, - { - "branches": [ - "main", - "releases/*.x" - ], - "settings": { - "buildModes": [ - "Clean" - ] - } - } - ] + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", + "projectName": "Apps DK", + "country": "DK", + "appFolders": [ + "../../../src/Apps/DK/C52012DataMigration/app", + "../../../src/Apps/DK/ContosoCoffeeDemoDatasetDK/app", + "../../../src/Apps/DK/DKCore/app", + "../../../src/Apps/DK/EDocument_DK/demo data", + "../../../src/Apps/DK/EDocumentFormatOIOUBL/app", + "../../../src/Apps/DK/ElectronicVATDeclarationDK/app", + "../../../src/Apps/DK/EnforcedDigitalVouchersDK/app", + "../../../src/Apps/DK/FIK/app", + "../../../src/Apps/DK/ImportDKPayroll/app", + "../../../src/Apps/DK/NemhandelNotification/app", + "../../../src/Apps/DK/OIOUBL/app", + "../../../src/Apps/DK/SAFTModificationDK/app", + "../../../src/Apps/DK/VATReportsDK/app", + "../../../src/Apps/W1/AgentDesignExperience/app", + "../../../src/Apps/W1/AgentSamples/app", + "../../../src/Apps/W1/AgentSamples/test", + "../../../src/Apps/W1/AIDevelopmentToolkit/app", + "../../../src/Apps/W1/AIDevelopmentToolkitDesign/app", + "../../../src/Apps/W1/AIDevelopmentToolkitEvaluation/app", + "../../../src/Apps/W1/AMCBanking365Fundamentals/app", + "../../../src/Apps/W1/APIReportsFinance/App", + "../../../src/Apps/W1/APIV1/app", + "../../../src/Apps/W1/APIV2/app", + "../../../src/Apps/W1/AuditFileExport/app", + "../../../src/Apps/W1/BankAccRecWithAI/app", + "../../../src/Apps/W1/BankDeposits/app", + "../../../src/Apps/W1/BasicExperience/app", + "../../../src/Apps/W1/ClientAddIns/app", + "../../../src/Apps/W1/CompanyHub/app", + "../../../src/Apps/W1/ConnectivityApps/app", + "../../../src/Apps/W1/ContosoCoffeeDemoDataset/app", + "../../../src/Apps/W1/CreateProductInformationWithCopilot/app", + "../../../src/Apps/W1/CrossEnvironmentIntercompany/app", + "../../../src/Apps/W1/DataArchive/App", + "../../../src/Apps/W1/DataCorrectionFA/App", + "../../../src/Apps/W1/DataSearch/App", + "../../../src/Apps/W1/EDocument/App", + "../../../src/Apps/W1/EDocument/Demo Data", + "../../../src/Apps/W1/EDocumentConnectors/Avalara/App", + "../../../src/Apps/W1/EDocumentConnectors/B2Brouter/app", + "../../../src/Apps/W1/EDocumentConnectors/Continia/app", + "../../../src/Apps/W1/EDocumentConnectors/ForNAV/App", + "../../../src/Apps/W1/EDocumentConnectors/Logiq/app", + "../../../src/Apps/W1/EDocumentConnectors/Microsoft365/app", + "../../../src/Apps/W1/EDocumentConnectors/Pagero/app", + "../../../src/Apps/W1/EDocumentConnectors/SignUp/app", + "../../../src/Apps/W1/Email - Current User Connector/app", + "../../../src/Apps/W1/Email - Microsoft 365 Connector/app", + "../../../src/Apps/W1/Email - Outlook REST API/app", + "../../../src/Apps/W1/Email - SMTP API/app", + "../../../src/Apps/W1/Email - SMTP Connector/app", + "../../../src/Apps/W1/EmailLogging/app", + "../../../src/Apps/W1/EnforcedDigitalVouchers/app", + "../../../src/Apps/W1/ErrorMessagesWithRecommendations/App", + "../../../src/Apps/W1/ESGStatisticalAccountsDemoTool/app", + "../../../src/Apps/W1/EssentialBusinessHeadlines/App", + "../../../src/Apps/W1/EU3PartyTradePurchase/app", + "../../../src/Apps/W1/ExcelReports/App", + "../../../src/Apps/W1/ExciseTaxes/app", + "../../../src/Apps/W1/External File Storage - Azure Blob Service Connector/App", + "../../../src/Apps/W1/External File Storage - Azure File Service Connector/App", + "../../../src/Apps/W1/External File Storage - SFTP Connector/App", + "../../../src/Apps/W1/External File Storage - SharePoint Connector/App", + "../../../src/Apps/W1/External Storage - Document Attachments/App", + "../../../src/Apps/W1/ExternalEvents/app", + "../../../src/Apps/W1/FieldServiceIntegration/app", + "../../../src/Apps/W1/HybridAPI/app", + "../../../src/Apps/W1/HybridBaseDeployment/app", + "../../../src/Apps/W1/HybridBC/app", + "../../../src/Apps/W1/HybridBC14/app", + "../../../src/Apps/W1/HybridBC14HistoricalData/app", + "../../../src/Apps/W1/HybridBCLast/app", + "../../../src/Apps/W1/Intrastat/app", + "../../../src/Apps/W1/Intrastat/demo data", + "../../../src/Apps/W1/LatePaymentPredictor/app", + "../../../src/Apps/W1/LibraryNoTransactions/app", + "../../../src/Apps/W1/Manufacturing/app", + "../../../src/Apps/W1/MasterDataManagement/app", + "../../../src/Apps/W1/MicrosoftUniversalPrint/app", + "../../../src/Apps/W1/MSWalletPayments/app", + "../../../src/Apps/W1/OnboardingSignals/app", + "../../../src/Apps/W1/Onprem Permissions/app", + "../../../src/Apps/W1/PayablesAgent/app", + "../../../src/Apps/W1/PaymentPractices/App", + "../../../src/Apps/W1/PayPalPaymentsStandard/app", + "../../../src/Apps/W1/PEPPOL/App", + "../../../src/Apps/W1/PlanConfiguration/app", + "../../../src/Apps/W1/PowerBIReports/App", + "../../../src/Apps/W1/Quality Management/app", + "../../../src/Apps/W1/Quality Management/Demo Data", + "../../../src/Apps/W1/RecommendedApps/app", + "../../../src/Apps/W1/ReviewGLEntries/app", + "../../../src/Apps/W1/SAF-T/app", + "../../../src/Apps/W1/SalesAndInventoryForecast/app", + "../../../src/Apps/W1/SalesLinesSuggestions/app", + "../../../src/Apps/W1/SalesOrderAgent/app", + "../../../src/Apps/W1/SendToEmailPrinter/App", + "../../../src/Apps/W1/ServiceDeclaration/app", + "../../../src/Apps/W1/ServiceManagement/app", + "../../../src/Apps/W1/Shopify/App", + "../../../src/Apps/W1/SimplifiedBankStatementImport/App", + "../../../src/Apps/W1/SmartList/app", + "../../../src/Apps/W1/StatisticalAccounts/app", + "../../../src/Apps/W1/Subcontracting/App", + "../../../src/Apps/W1/Subscription Billing/App", + "../../../src/Apps/W1/Subscription Billing/Demo Data", + "../../../src/Apps/W1/Sustainability/app", + "../../../src/Apps/W1/SustainabilityContosoCoffeeDemoDataset/app", + "../../../src/Apps/W1/SustainabilityCopilotSuggestion/app", + "../../../src/Apps/W1/SyncBase/app", + "../../../src/Apps/W1/TransactionStorage/App", + "../../../src/Apps/W1/VATGroupManagement/app", + "../../../src/Apps/W1/WithholdingTax/app", + "../../../src/Business Foundation/App", + "../../../src/Business Foundation/Test Library", + "../../../src/Layers/W1/Application", + "../../../src/Layers/W1/BaseApp", + "../../../src/Layers/W1/DemoTool", + "../../../src/Layers/W1/Tests/ApplicationTestLibrary", + "../../../src/System Application/App", + "../../../src/Tools/AI Test Toolkit", + "../../../src/Tools/Performance Toolkit/App", + "../../../src/Tools/Test Framework/Test Libraries/Any", + "../../../src/Tools/Test Framework/Test Libraries/Assert", + "../../../src/Tools/Test Framework/Test Libraries/LibraryAgent", + "../../../src/Tools/Test Framework/Test Libraries/Permissions Mock", + "../../../src/Tools/Test Framework/Test Libraries/Variable Storage", + "../../../src/Tools/Test Framework/Test Runner", + "../../../src/Tools/Test Framework/Test Stability Tools/Prevent Metadata Updates" + ], + "testFolders": [ + "../../../src/Apps/DK/C52012DataMigration/test", + "../../../src/Apps/DK/DKCore/test", + "../../../src/Apps/DK/ElectronicVATDeclarationDK/test", + "../../../src/Apps/DK/EnforcedDigitalVouchersDK/test", + "../../../src/Apps/DK/FIK/test", + "../../../src/Apps/DK/ImportDKPayroll/test", + "../../../src/Apps/DK/NemhandelNotification/test", + "../../../src/Apps/DK/OIOUBL/test", + "../../../src/Apps/DK/SAFTModificationDK/test", + "../../../src/Apps/DK/VATReportsDK/test", + "../../../src/Apps/W1/AMCBanking365Fundamentals/test", + "../../../src/Apps/W1/APIV1/test", + "../../../src/Apps/W1/APIV2/test", + "../../../src/Apps/W1/AuditFileExport/test", + "../../../src/Apps/W1/BankAccRecWithAI/test", + "../../../src/Apps/W1/BankDeposits/test", + "../../../src/Apps/W1/BasicExperience/test", + "../../../src/Apps/W1/ConnectivityApps/test", + "../../../src/Apps/W1/ContosoCoffeeDemoDataset/test", + "../../../src/Apps/W1/DataArchive/Test", + "../../../src/Apps/W1/DataSearch/Test", + "../../../src/Apps/W1/EDocument/Test", + "../../../src/Apps/W1/EDocumentConnectors/Avalara/Test", + "../../../src/Apps/W1/EDocumentConnectors/B2Brouter/test", + "../../../src/Apps/W1/EDocumentConnectors/Continia/test", + "../../../src/Apps/W1/EDocumentConnectors/ForNav/Test", + "../../../src/Apps/W1/EDocumentConnectors/Logiq/test", + "../../../src/Apps/W1/EDocumentConnectors/Microsoft365/test", + "../../../src/Apps/W1/EDocumentConnectors/Pagero/test", + "../../../src/Apps/W1/EDocumentConnectors/SignUp/test", + "../../../src/Apps/W1/Email - Current User Connector/test", + "../../../src/Apps/W1/Email - Microsoft 365 Connector/test", + "../../../src/Apps/W1/Email - Outlook REST API/test", + "../../../src/Apps/W1/Email - SMTP API/test", + "../../../src/Apps/W1/Email - SMTP API/test library", + "../../../src/Apps/W1/Email - SMTP Connector/test", + "../../../src/Apps/W1/EmailLogging/test", + "../../../src/Apps/W1/EnforcedDigitalVouchers/test", + "../../../src/Apps/W1/EnforcedDigitalVouchers/test library", + "../../../src/Apps/W1/ErrorMessagesWithRecommendations/Test", + "../../../src/Apps/W1/EssentialBusinessHeadlines/Test", + "../../../src/Apps/W1/EU3PartyTradePurchase/test", + "../../../src/Apps/W1/ExcelReports/Test", + "../../../src/Apps/W1/ExciseTaxes/test", + "../../../src/Apps/W1/ExternalEvents/test", + "../../../src/Apps/W1/FieldServiceIntegration/test", + "../../../src/Apps/W1/FieldServiceIntegration/test library", + "../../../src/Apps/W1/HybridBaseDeployment/test", + "../../../src/Apps/W1/HybridBC/test", + "../../../src/Apps/W1/HybridBC14/test", + "../../../src/Apps/W1/HybridBCLast/test", + "../../../src/Apps/W1/Intrastat/test", + "../../../src/Apps/W1/LatePaymentPredictor/test", + "../../../src/Apps/W1/Manufacturing/test", + "../../../src/Apps/W1/MasterDataManagement/test", + "../../../src/Apps/W1/MasterDataManagement/test library", + "../../../src/Apps/W1/OnboardingSignals/test", + "../../../src/Apps/W1/Onprem Permissions/test", + "../../../src/Apps/W1/PaymentPractices/Test", + "../../../src/Apps/W1/PaymentPractices/Test Library", + "../../../src/Apps/W1/PayPalPaymentsStandard/test", + "../../../src/Apps/W1/PEPPOL/Test", + "../../../src/Apps/W1/PlanConfiguration/test", + "../../../src/Apps/W1/PowerBIReports/Test", + "../../../src/Apps/W1/PowerBIReports/Test Library", + "../../../src/Apps/W1/Quality Management/test", + "../../../src/Apps/W1/Quality Management/Test Library", + "../../../src/Apps/W1/RecommendedApps/test", + "../../../src/Apps/W1/ReviewGLEntries/test", + "../../../src/Apps/W1/SAF-T/test", + "../../../src/Apps/W1/SalesAndInventoryForecast/test", + "../../../src/Apps/W1/SalesLinesSuggestions/test", + "../../../src/Apps/W1/ServiceDeclaration/test", + "../../../src/Apps/W1/ServiceManagement/test", + "../../../src/Apps/W1/Shopify/Test", + "../../../src/Apps/W1/SimplifiedBankStatementImport/Test", + "../../../src/Apps/W1/StatisticalAccounts/test", + "../../../src/Apps/W1/Subcontracting/Test", + "../../../src/Apps/W1/Subscription Billing/Test", + "../../../src/Apps/W1/Sustainability/test", + "../../../src/Apps/W1/SustainabilityCopilotSuggestion/test", + "../../../src/Apps/W1/VATGroupManagement/test", + "../../../src/Apps/W1/WithholdingTax/test", + "../../../src/Business Foundation/Test", + "../../../src/Layers/W1/Tests/Bank", + "../../../src/Layers/W1/Tests/BCPT-SampleTests", + "../../../src/Layers/W1/Tests/Cash Flow", + "../../../src/Layers/W1/Tests/Cost Accounting", + "../../../src/Layers/W1/Tests/CRM integration", + "../../../src/Layers/W1/Tests/Data Exchange", + "../../../src/Layers/W1/Tests/Dimension", + "../../../src/Layers/W1/Tests/DotNet-Internal", + "../../../src/Layers/W1/Tests/ERM", + "../../../src/Layers/W1/Tests/Fixed Asset", + "../../../src/Layers/W1/Tests/General Journal", + "../../../src/Layers/W1/Tests/Graph", + "../../../src/Layers/W1/Tests/Integration", + "../../../src/Layers/W1/Tests/Integration-Internal", + "../../../src/Layers/W1/Tests/Job", + "../../../src/Layers/W1/Tests/Local", + "../../../src/Layers/W1/Tests/Marketing", + "../../../src/Layers/W1/Tests/Misc", + "../../../src/Layers/W1/Tests/MOCKSERVICETESTS-Internal", + "../../../src/Layers/W1/Tests/Monitor Sensitive Fields", + "../../../src/Layers/W1/Tests/NewObjectTests-Internal", + "../../../src/Layers/W1/Tests/Permissions", + "../../../src/Layers/W1/Tests/Physical Inventory", + "../../../src/Layers/W1/Tests/Prepayment", + "../../../src/Layers/W1/Tests/Rapid Start", + "../../../src/Layers/W1/Tests/Report", + "../../../src/Layers/W1/Tests/Resource", + "../../../src/Layers/W1/Tests/Reverse", + "../../../src/Layers/W1/Tests/SCM", + "../../../src/Layers/W1/Tests/SCM-Assembly", + "../../../src/Layers/W1/Tests/SCM-Manufacturing", + "../../../src/Layers/W1/Tests/SCM-Service", + "../../../src/Layers/W1/Tests/SINGLESERVER", + "../../../src/Layers/W1/Tests/SMB", + "../../../src/Layers/W1/Tests/TestLibraries", + "../../../src/Layers/W1/Tests/TestRunner-Internal", + "../../../src/Layers/W1/Tests/Upgrade", + "../../../src/Layers/W1/Tests/User", + "../../../src/Layers/W1/Tests/VAT", + "../../../src/Layers/W1/Tests/Workflow", + "../../../src/System Application/Partner Test", + "../../../src/System Application/Test", + "../../../src/System Application/Test Library", + "../../../src/Tools/Performance Toolkit/Test", + "../../../src/Tools/Red Team Scan" + ], + "doNotRunTests": true, + "doNotPublishApps": true, + "ConditionalSettings": [ + { + "branches": [ + "releases/*.[0-5]" + ], + "settings": { + "buildModes": [ + "Strict" + ] + } + }, + { + "branches": [ + "main", + "releases/*.x" + ], + "settings": { + "buildModes": [ + "Clean" + ] + } + } + ] } diff --git a/build/projects/Apps ES/.AL-Go/cloudDevEnv.ps1 b/build/projects/Apps ES/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Apps ES/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Apps ES/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps ES/.AL-Go/localDevEnv.ps1 b/build/projects/Apps ES/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Apps ES/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Apps ES/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps ES/.AL-Go/settings.json b/build/projects/Apps ES/.AL-Go/settings.json index 9f0622cf7b6..4b41d0d1d7b 100644 --- a/build/projects/Apps ES/.AL-Go/settings.json +++ b/build/projects/Apps ES/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Apps ES", "country": "ES", "appFolders": [ diff --git a/build/projects/Apps FI/.AL-Go/cloudDevEnv.ps1 b/build/projects/Apps FI/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Apps FI/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Apps FI/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps FI/.AL-Go/localDevEnv.ps1 b/build/projects/Apps FI/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Apps FI/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Apps FI/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps FI/.AL-Go/settings.json b/build/projects/Apps FI/.AL-Go/settings.json index 7c050084ac4..422e385830a 100644 --- a/build/projects/Apps FI/.AL-Go/settings.json +++ b/build/projects/Apps FI/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Apps FI", "country": "FI", "appFolders": [ diff --git a/build/projects/Apps FR/.AL-Go/cloudDevEnv.ps1 b/build/projects/Apps FR/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Apps FR/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Apps FR/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps FR/.AL-Go/localDevEnv.ps1 b/build/projects/Apps FR/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Apps FR/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Apps FR/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps FR/.AL-Go/settings.json b/build/projects/Apps FR/.AL-Go/settings.json index 032635b10af..685ac41ef43 100644 --- a/build/projects/Apps FR/.AL-Go/settings.json +++ b/build/projects/Apps FR/.AL-Go/settings.json @@ -1,282 +1,282 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", - "projectName": "Apps FR", - "country": "FR", - "appFolders": [ - "../../../src/Apps/FR/ContosoCoffeeDemoDatasetFR/app", - "../../../src/Apps/FR/EDocument_FR/demo data", - "../../../src/Apps/FR/EDocument_FR/EReportingFR/app", - "../../../src/Apps/FR/FAReportsFR/app", - "../../../src/Apps/FR/FECAuditFile/app", - "../../../src/Apps/FR/HybridBCLast_FR/app", - "../../../src/Apps/FR/IntrastatFR/app", - "../../../src/Apps/FR/Onprem Permissions FR/app", - "../../../src/Apps/FR/PaymentManagementFR/app", - "../../../src/Apps/FR/ServiceDeclarationFR/app", - "../../../src/Apps/W1/AgentDesignExperience/app", - "../../../src/Apps/W1/AgentSamples/app", - "../../../src/Apps/W1/AgentSamples/test", - "../../../src/Apps/W1/AIDevelopmentToolkit/app", - "../../../src/Apps/W1/AIDevelopmentToolkitDesign/app", - "../../../src/Apps/W1/AIDevelopmentToolkitEvaluation/app", - "../../../src/Apps/W1/AMCBanking365Fundamentals/app", - "../../../src/Apps/W1/APIReportsFinance/App", - "../../../src/Apps/W1/APIV1/app", - "../../../src/Apps/W1/APIV2/app", - "../../../src/Apps/W1/AuditFileExport/app", - "../../../src/Apps/W1/BankAccRecWithAI/app", - "../../../src/Apps/W1/BankDeposits/app", - "../../../src/Apps/W1/ClientAddIns/app", - "../../../src/Apps/W1/CompanyHub/app", - "../../../src/Apps/W1/ConnectivityApps/app", - "../../../src/Apps/W1/ContosoCoffeeDemoDataset/app", - "../../../src/Apps/W1/CreateProductInformationWithCopilot/app", - "../../../src/Apps/W1/CrossEnvironmentIntercompany/app", - "../../../src/Apps/W1/DataArchive/App", - "../../../src/Apps/W1/DataCorrectionFA/App", - "../../../src/Apps/W1/DataSearch/App", - "../../../src/Apps/W1/EDocument/App", - "../../../src/Apps/W1/EDocument/Demo Data", - "../../../src/Apps/W1/EDocumentConnectors/Avalara/App", - "../../../src/Apps/W1/EDocumentConnectors/B2Brouter/app", - "../../../src/Apps/W1/EDocumentConnectors/Continia/app", - "../../../src/Apps/W1/EDocumentConnectors/ForNAV/App", - "../../../src/Apps/W1/EDocumentConnectors/Logiq/app", - "../../../src/Apps/W1/EDocumentConnectors/Microsoft365/app", - "../../../src/Apps/W1/EDocumentConnectors/Pagero/app", - "../../../src/Apps/W1/EDocumentConnectors/SignUp/app", - "../../../src/Apps/W1/Email - Current User Connector/app", - "../../../src/Apps/W1/Email - Microsoft 365 Connector/app", - "../../../src/Apps/W1/Email - Outlook REST API/app", - "../../../src/Apps/W1/Email - SMTP API/app", - "../../../src/Apps/W1/Email - SMTP Connector/app", - "../../../src/Apps/W1/EmailLogging/app", - "../../../src/Apps/W1/EnforcedDigitalVouchers/app", - "../../../src/Apps/W1/ErrorMessagesWithRecommendations/App", - "../../../src/Apps/W1/ESGStatisticalAccountsDemoTool/app", - "../../../src/Apps/W1/EssentialBusinessHeadlines/App", - "../../../src/Apps/W1/EU3PartyTradePurchase/app", - "../../../src/Apps/W1/ExcelReports/App", - "../../../src/Apps/W1/ExciseTaxes/app", - "../../../src/Apps/W1/External File Storage - Azure Blob Service Connector/App", - "../../../src/Apps/W1/External File Storage - Azure File Service Connector/App", - "../../../src/Apps/W1/External File Storage - SFTP Connector/App", - "../../../src/Apps/W1/External File Storage - SharePoint Connector/App", - "../../../src/Apps/W1/External Storage - Document Attachments/App", - "../../../src/Apps/W1/ExternalEvents/app", - "../../../src/Apps/W1/FieldServiceIntegration/app", - "../../../src/Apps/W1/HybridAPI/app", - "../../../src/Apps/W1/HybridBaseDeployment/app", - "../../../src/Apps/W1/HybridBC/app", - "../../../src/Apps/W1/HybridBC14/app", - "../../../src/Apps/W1/HybridBC14HistoricalData/app", - "../../../src/Apps/W1/HybridBCLast/app", - "../../../src/Apps/W1/Intrastat/app", - "../../../src/Apps/W1/Intrastat/demo data", - "../../../src/Apps/W1/LatePaymentPredictor/app", - "../../../src/Apps/W1/LibraryNoTransactions/app", - "../../../src/Apps/W1/Manufacturing/app", - "../../../src/Apps/W1/MasterDataManagement/app", - "../../../src/Apps/W1/MicrosoftUniversalPrint/app", - "../../../src/Apps/W1/MSWalletPayments/app", - "../../../src/Apps/W1/OnboardingSignals/app", - "../../../src/Apps/W1/Onprem Permissions/app", - "../../../src/Apps/W1/PayablesAgent/app", - "../../../src/Apps/W1/PaymentPractices/App", - "../../../src/Apps/W1/PayPalPaymentsStandard/app", - "../../../src/Apps/W1/PEPPOL/App", - "../../../src/Apps/W1/PlanConfiguration/app", - "../../../src/Apps/W1/PowerBIReports/App", - "../../../src/Apps/W1/Quality Management/app", - "../../../src/Apps/W1/Quality Management/Demo Data", - "../../../src/Apps/W1/RecommendedApps/app", - "../../../src/Apps/W1/ReviewGLEntries/app", - "../../../src/Apps/W1/SAF-T/app", - "../../../src/Apps/W1/SalesAndInventoryForecast/app", - "../../../src/Apps/W1/SalesLinesSuggestions/app", - "../../../src/Apps/W1/SalesOrderAgent/app", - "../../../src/Apps/W1/SendToEmailPrinter/App", - "../../../src/Apps/W1/ServiceDeclaration/app", - "../../../src/Apps/W1/ServiceManagement/app", - "../../../src/Apps/W1/Shopify/App", - "../../../src/Apps/W1/SimplifiedBankStatementImport/App", - "../../../src/Apps/W1/SmartList/app", - "../../../src/Apps/W1/StatisticalAccounts/app", - "../../../src/Apps/W1/Subcontracting/App", - "../../../src/Apps/W1/Subscription Billing/App", - "../../../src/Apps/W1/Subscription Billing/Demo Data", - "../../../src/Apps/W1/Sustainability/app", - "../../../src/Apps/W1/SustainabilityContosoCoffeeDemoDataset/app", - "../../../src/Apps/W1/SustainabilityCopilotSuggestion/app", - "../../../src/Apps/W1/SyncBase/app", - "../../../src/Apps/W1/VATGroupManagement/app", - "../../../src/Apps/W1/WithholdingTax/app", - "../../../src/Business Foundation/App", - "../../../src/Business Foundation/Test Library", - "../../../src/Layers/W1/Application", - "../../../src/Layers/W1/BaseApp", - "../../../src/Layers/W1/DemoTool", - "../../../src/Layers/W1/Tests/ApplicationTestLibrary", - "../../../src/System Application/App", - "../../../src/Tools/AI Test Toolkit", - "../../../src/Tools/Performance Toolkit/App", - "../../../src/Tools/Test Framework/Test Libraries/Any", - "../../../src/Tools/Test Framework/Test Libraries/Assert", - "../../../src/Tools/Test Framework/Test Libraries/LibraryAgent", - "../../../src/Tools/Test Framework/Test Libraries/Permissions Mock", - "../../../src/Tools/Test Framework/Test Libraries/Variable Storage", - "../../../src/Tools/Test Framework/Test Runner", - "../../../src/Tools/Test Framework/Test Stability Tools/Prevent Metadata Updates" - ], - "testFolders": [ - "../../../src/Apps/FR/EDocument_FR/EReportingFR/test", - "../../../src/Apps/FR/FAReportsFR/test", - "../../../src/Apps/FR/FECAuditFile/test", - "../../../src/Apps/FR/IntrastatFR/test", - "../../../src/Apps/FR/PaymentManagementFR/test", - "../../../src/Apps/FR/ServiceDeclarationFR/test", - "../../../src/Apps/W1/AMCBanking365Fundamentals/test", - "../../../src/Apps/W1/APIV1/test", - "../../../src/Apps/W1/APIV2/test", - "../../../src/Apps/W1/AuditFileExport/test", - "../../../src/Apps/W1/BankAccRecWithAI/test", - "../../../src/Apps/W1/BankDeposits/test", - "../../../src/Apps/W1/ConnectivityApps/test", - "../../../src/Apps/W1/ContosoCoffeeDemoDataset/test", - "../../../src/Apps/W1/DataArchive/Test", - "../../../src/Apps/W1/DataSearch/Test", - "../../../src/Apps/W1/EDocument/Test", - "../../../src/Apps/W1/EDocumentConnectors/Avalara/Test", - "../../../src/Apps/W1/EDocumentConnectors/B2Brouter/test", - "../../../src/Apps/W1/EDocumentConnectors/Continia/test", - "../../../src/Apps/W1/EDocumentConnectors/ForNav/Test", - "../../../src/Apps/W1/EDocumentConnectors/Logiq/test", - "../../../src/Apps/W1/EDocumentConnectors/Microsoft365/test", - "../../../src/Apps/W1/EDocumentConnectors/Pagero/test", - "../../../src/Apps/W1/EDocumentConnectors/SignUp/test", - "../../../src/Apps/W1/Email - Current User Connector/test", - "../../../src/Apps/W1/Email - Microsoft 365 Connector/test", - "../../../src/Apps/W1/Email - Outlook REST API/test", - "../../../src/Apps/W1/Email - SMTP API/test", - "../../../src/Apps/W1/Email - SMTP API/test library", - "../../../src/Apps/W1/Email - SMTP Connector/test", - "../../../src/Apps/W1/EmailLogging/test", - "../../../src/Apps/W1/EnforcedDigitalVouchers/test", - "../../../src/Apps/W1/EnforcedDigitalVouchers/test library", - "../../../src/Apps/W1/ErrorMessagesWithRecommendations/Test", - "../../../src/Apps/W1/EssentialBusinessHeadlines/Test", - "../../../src/Apps/W1/EU3PartyTradePurchase/test", - "../../../src/Apps/W1/ExcelReports/Test", - "../../../src/Apps/W1/ExciseTaxes/test", - "../../../src/Apps/W1/ExternalEvents/test", - "../../../src/Apps/W1/FieldServiceIntegration/test", - "../../../src/Apps/W1/FieldServiceIntegration/test library", - "../../../src/Apps/W1/HybridBaseDeployment/test", - "../../../src/Apps/W1/HybridBC/test", - "../../../src/Apps/W1/HybridBC14/test", - "../../../src/Apps/W1/HybridBCLast/test", - "../../../src/Apps/W1/Intrastat/test", - "../../../src/Apps/W1/LatePaymentPredictor/test", - "../../../src/Apps/W1/Manufacturing/test", - "../../../src/Apps/W1/MasterDataManagement/test", - "../../../src/Apps/W1/MasterDataManagement/test library", - "../../../src/Apps/W1/OnboardingSignals/test", - "../../../src/Apps/W1/Onprem Permissions/test", - "../../../src/Apps/W1/PaymentPractices/Test", - "../../../src/Apps/W1/PaymentPractices/Test Library", - "../../../src/Apps/W1/PayPalPaymentsStandard/test", - "../../../src/Apps/W1/PEPPOL/Test", - "../../../src/Apps/W1/PlanConfiguration/test", - "../../../src/Apps/W1/PowerBIReports/Test", - "../../../src/Apps/W1/PowerBIReports/Test Library", - "../../../src/Apps/W1/Quality Management/test", - "../../../src/Apps/W1/Quality Management/Test Library", - "../../../src/Apps/W1/RecommendedApps/test", - "../../../src/Apps/W1/ReviewGLEntries/test", - "../../../src/Apps/W1/SAF-T/test", - "../../../src/Apps/W1/SalesAndInventoryForecast/test", - "../../../src/Apps/W1/SalesLinesSuggestions/test", - "../../../src/Apps/W1/ServiceDeclaration/test", - "../../../src/Apps/W1/ServiceManagement/test", - "../../../src/Apps/W1/Shopify/Test", - "../../../src/Apps/W1/SimplifiedBankStatementImport/Test", - "../../../src/Apps/W1/StatisticalAccounts/test", - "../../../src/Apps/W1/Subcontracting/Test", - "../../../src/Apps/W1/Subscription Billing/Test", - "../../../src/Apps/W1/Sustainability/test", - "../../../src/Apps/W1/SustainabilityCopilotSuggestion/test", - "../../../src/Apps/W1/VATGroupManagement/test", - "../../../src/Apps/W1/WithholdingTax/test", - "../../../src/Business Foundation/Test", - "../../../src/Layers/W1/Tests/Bank", - "../../../src/Layers/W1/Tests/BCPT-SampleTests", - "../../../src/Layers/W1/Tests/Cash Flow", - "../../../src/Layers/W1/Tests/Cost Accounting", - "../../../src/Layers/W1/Tests/CRM integration", - "../../../src/Layers/W1/Tests/Data Exchange", - "../../../src/Layers/W1/Tests/Dimension", - "../../../src/Layers/W1/Tests/DotNet-Internal", - "../../../src/Layers/W1/Tests/ERM", - "../../../src/Layers/W1/Tests/Fixed Asset", - "../../../src/Layers/W1/Tests/General Journal", - "../../../src/Layers/W1/Tests/Graph", - "../../../src/Layers/W1/Tests/Integration", - "../../../src/Layers/W1/Tests/Integration-Internal", - "../../../src/Layers/W1/Tests/Job", - "../../../src/Layers/W1/Tests/Local", - "../../../src/Layers/W1/Tests/Marketing", - "../../../src/Layers/W1/Tests/Misc", - "../../../src/Layers/W1/Tests/MOCKSERVICETESTS-Internal", - "../../../src/Layers/W1/Tests/Monitor Sensitive Fields", - "../../../src/Layers/W1/Tests/NewObjectTests-Internal", - "../../../src/Layers/W1/Tests/Permissions", - "../../../src/Layers/W1/Tests/Physical Inventory", - "../../../src/Layers/W1/Tests/Prepayment", - "../../../src/Layers/W1/Tests/Rapid Start", - "../../../src/Layers/W1/Tests/Report", - "../../../src/Layers/W1/Tests/Resource", - "../../../src/Layers/W1/Tests/Reverse", - "../../../src/Layers/W1/Tests/SCM", - "../../../src/Layers/W1/Tests/SCM-Assembly", - "../../../src/Layers/W1/Tests/SCM-Manufacturing", - "../../../src/Layers/W1/Tests/SCM-Service", - "../../../src/Layers/W1/Tests/SINGLESERVER", - "../../../src/Layers/W1/Tests/SMB", - "../../../src/Layers/W1/Tests/TestLibraries", - "../../../src/Layers/W1/Tests/TestRunner-Internal", - "../../../src/Layers/W1/Tests/Upgrade", - "../../../src/Layers/W1/Tests/User", - "../../../src/Layers/W1/Tests/VAT", - "../../../src/Layers/W1/Tests/Workflow", - "../../../src/System Application/Partner Test", - "../../../src/System Application/Test", - "../../../src/System Application/Test Library", - "../../../src/Tools/Performance Toolkit/Test", - "../../../src/Tools/Red Team Scan" - ], - "doNotRunTests": true, - "doNotPublishApps": true, - "ConditionalSettings": [ - { - "branches": [ - "releases/*.[0-5]" - ], - "settings": { - "buildModes": [ - "Strict" - ] - } - }, - { - "branches": [ - "main", - "releases/*.x" - ], - "settings": { - "buildModes": [ - "Clean" - ] - } - } - ] + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", + "projectName": "Apps FR", + "country": "FR", + "appFolders": [ + "../../../src/Apps/FR/ContosoCoffeeDemoDatasetFR/app", + "../../../src/Apps/FR/EDocument_FR/demo data", + "../../../src/Apps/FR/EDocument_FR/EReportingFR/app", + "../../../src/Apps/FR/FAReportsFR/app", + "../../../src/Apps/FR/FECAuditFile/app", + "../../../src/Apps/FR/HybridBCLast_FR/app", + "../../../src/Apps/FR/IntrastatFR/app", + "../../../src/Apps/FR/Onprem Permissions FR/app", + "../../../src/Apps/FR/PaymentManagementFR/app", + "../../../src/Apps/FR/ServiceDeclarationFR/app", + "../../../src/Apps/W1/AgentDesignExperience/app", + "../../../src/Apps/W1/AgentSamples/app", + "../../../src/Apps/W1/AgentSamples/test", + "../../../src/Apps/W1/AIDevelopmentToolkit/app", + "../../../src/Apps/W1/AIDevelopmentToolkitDesign/app", + "../../../src/Apps/W1/AIDevelopmentToolkitEvaluation/app", + "../../../src/Apps/W1/AMCBanking365Fundamentals/app", + "../../../src/Apps/W1/APIReportsFinance/App", + "../../../src/Apps/W1/APIV1/app", + "../../../src/Apps/W1/APIV2/app", + "../../../src/Apps/W1/AuditFileExport/app", + "../../../src/Apps/W1/BankAccRecWithAI/app", + "../../../src/Apps/W1/BankDeposits/app", + "../../../src/Apps/W1/ClientAddIns/app", + "../../../src/Apps/W1/CompanyHub/app", + "../../../src/Apps/W1/ConnectivityApps/app", + "../../../src/Apps/W1/ContosoCoffeeDemoDataset/app", + "../../../src/Apps/W1/CreateProductInformationWithCopilot/app", + "../../../src/Apps/W1/CrossEnvironmentIntercompany/app", + "../../../src/Apps/W1/DataArchive/App", + "../../../src/Apps/W1/DataCorrectionFA/App", + "../../../src/Apps/W1/DataSearch/App", + "../../../src/Apps/W1/EDocument/App", + "../../../src/Apps/W1/EDocument/Demo Data", + "../../../src/Apps/W1/EDocumentConnectors/Avalara/App", + "../../../src/Apps/W1/EDocumentConnectors/B2Brouter/app", + "../../../src/Apps/W1/EDocumentConnectors/Continia/app", + "../../../src/Apps/W1/EDocumentConnectors/ForNAV/App", + "../../../src/Apps/W1/EDocumentConnectors/Logiq/app", + "../../../src/Apps/W1/EDocumentConnectors/Microsoft365/app", + "../../../src/Apps/W1/EDocumentConnectors/Pagero/app", + "../../../src/Apps/W1/EDocumentConnectors/SignUp/app", + "../../../src/Apps/W1/Email - Current User Connector/app", + "../../../src/Apps/W1/Email - Microsoft 365 Connector/app", + "../../../src/Apps/W1/Email - Outlook REST API/app", + "../../../src/Apps/W1/Email - SMTP API/app", + "../../../src/Apps/W1/Email - SMTP Connector/app", + "../../../src/Apps/W1/EmailLogging/app", + "../../../src/Apps/W1/EnforcedDigitalVouchers/app", + "../../../src/Apps/W1/ErrorMessagesWithRecommendations/App", + "../../../src/Apps/W1/ESGStatisticalAccountsDemoTool/app", + "../../../src/Apps/W1/EssentialBusinessHeadlines/App", + "../../../src/Apps/W1/EU3PartyTradePurchase/app", + "../../../src/Apps/W1/ExcelReports/App", + "../../../src/Apps/W1/ExciseTaxes/app", + "../../../src/Apps/W1/External File Storage - Azure Blob Service Connector/App", + "../../../src/Apps/W1/External File Storage - Azure File Service Connector/App", + "../../../src/Apps/W1/External File Storage - SFTP Connector/App", + "../../../src/Apps/W1/External File Storage - SharePoint Connector/App", + "../../../src/Apps/W1/External Storage - Document Attachments/App", + "../../../src/Apps/W1/ExternalEvents/app", + "../../../src/Apps/W1/FieldServiceIntegration/app", + "../../../src/Apps/W1/HybridAPI/app", + "../../../src/Apps/W1/HybridBaseDeployment/app", + "../../../src/Apps/W1/HybridBC/app", + "../../../src/Apps/W1/HybridBC14/app", + "../../../src/Apps/W1/HybridBC14HistoricalData/app", + "../../../src/Apps/W1/HybridBCLast/app", + "../../../src/Apps/W1/Intrastat/app", + "../../../src/Apps/W1/Intrastat/demo data", + "../../../src/Apps/W1/LatePaymentPredictor/app", + "../../../src/Apps/W1/LibraryNoTransactions/app", + "../../../src/Apps/W1/Manufacturing/app", + "../../../src/Apps/W1/MasterDataManagement/app", + "../../../src/Apps/W1/MicrosoftUniversalPrint/app", + "../../../src/Apps/W1/MSWalletPayments/app", + "../../../src/Apps/W1/OnboardingSignals/app", + "../../../src/Apps/W1/Onprem Permissions/app", + "../../../src/Apps/W1/PayablesAgent/app", + "../../../src/Apps/W1/PaymentPractices/App", + "../../../src/Apps/W1/PayPalPaymentsStandard/app", + "../../../src/Apps/W1/PEPPOL/App", + "../../../src/Apps/W1/PlanConfiguration/app", + "../../../src/Apps/W1/PowerBIReports/App", + "../../../src/Apps/W1/Quality Management/app", + "../../../src/Apps/W1/Quality Management/Demo Data", + "../../../src/Apps/W1/RecommendedApps/app", + "../../../src/Apps/W1/ReviewGLEntries/app", + "../../../src/Apps/W1/SAF-T/app", + "../../../src/Apps/W1/SalesAndInventoryForecast/app", + "../../../src/Apps/W1/SalesLinesSuggestions/app", + "../../../src/Apps/W1/SalesOrderAgent/app", + "../../../src/Apps/W1/SendToEmailPrinter/App", + "../../../src/Apps/W1/ServiceDeclaration/app", + "../../../src/Apps/W1/ServiceManagement/app", + "../../../src/Apps/W1/Shopify/App", + "../../../src/Apps/W1/SimplifiedBankStatementImport/App", + "../../../src/Apps/W1/SmartList/app", + "../../../src/Apps/W1/StatisticalAccounts/app", + "../../../src/Apps/W1/Subcontracting/App", + "../../../src/Apps/W1/Subscription Billing/App", + "../../../src/Apps/W1/Subscription Billing/Demo Data", + "../../../src/Apps/W1/Sustainability/app", + "../../../src/Apps/W1/SustainabilityContosoCoffeeDemoDataset/app", + "../../../src/Apps/W1/SustainabilityCopilotSuggestion/app", + "../../../src/Apps/W1/SyncBase/app", + "../../../src/Apps/W1/VATGroupManagement/app", + "../../../src/Apps/W1/WithholdingTax/app", + "../../../src/Business Foundation/App", + "../../../src/Business Foundation/Test Library", + "../../../src/Layers/W1/Application", + "../../../src/Layers/W1/BaseApp", + "../../../src/Layers/W1/DemoTool", + "../../../src/Layers/W1/Tests/ApplicationTestLibrary", + "../../../src/System Application/App", + "../../../src/Tools/AI Test Toolkit", + "../../../src/Tools/Performance Toolkit/App", + "../../../src/Tools/Test Framework/Test Libraries/Any", + "../../../src/Tools/Test Framework/Test Libraries/Assert", + "../../../src/Tools/Test Framework/Test Libraries/LibraryAgent", + "../../../src/Tools/Test Framework/Test Libraries/Permissions Mock", + "../../../src/Tools/Test Framework/Test Libraries/Variable Storage", + "../../../src/Tools/Test Framework/Test Runner", + "../../../src/Tools/Test Framework/Test Stability Tools/Prevent Metadata Updates" + ], + "testFolders": [ + "../../../src/Apps/FR/EDocument_FR/EReportingFR/test", + "../../../src/Apps/FR/FAReportsFR/test", + "../../../src/Apps/FR/FECAuditFile/test", + "../../../src/Apps/FR/IntrastatFR/test", + "../../../src/Apps/FR/PaymentManagementFR/test", + "../../../src/Apps/FR/ServiceDeclarationFR/test", + "../../../src/Apps/W1/AMCBanking365Fundamentals/test", + "../../../src/Apps/W1/APIV1/test", + "../../../src/Apps/W1/APIV2/test", + "../../../src/Apps/W1/AuditFileExport/test", + "../../../src/Apps/W1/BankAccRecWithAI/test", + "../../../src/Apps/W1/BankDeposits/test", + "../../../src/Apps/W1/ConnectivityApps/test", + "../../../src/Apps/W1/ContosoCoffeeDemoDataset/test", + "../../../src/Apps/W1/DataArchive/Test", + "../../../src/Apps/W1/DataSearch/Test", + "../../../src/Apps/W1/EDocument/Test", + "../../../src/Apps/W1/EDocumentConnectors/Avalara/Test", + "../../../src/Apps/W1/EDocumentConnectors/B2Brouter/test", + "../../../src/Apps/W1/EDocumentConnectors/Continia/test", + "../../../src/Apps/W1/EDocumentConnectors/ForNav/Test", + "../../../src/Apps/W1/EDocumentConnectors/Logiq/test", + "../../../src/Apps/W1/EDocumentConnectors/Microsoft365/test", + "../../../src/Apps/W1/EDocumentConnectors/Pagero/test", + "../../../src/Apps/W1/EDocumentConnectors/SignUp/test", + "../../../src/Apps/W1/Email - Current User Connector/test", + "../../../src/Apps/W1/Email - Microsoft 365 Connector/test", + "../../../src/Apps/W1/Email - Outlook REST API/test", + "../../../src/Apps/W1/Email - SMTP API/test", + "../../../src/Apps/W1/Email - SMTP API/test library", + "../../../src/Apps/W1/Email - SMTP Connector/test", + "../../../src/Apps/W1/EmailLogging/test", + "../../../src/Apps/W1/EnforcedDigitalVouchers/test", + "../../../src/Apps/W1/EnforcedDigitalVouchers/test library", + "../../../src/Apps/W1/ErrorMessagesWithRecommendations/Test", + "../../../src/Apps/W1/EssentialBusinessHeadlines/Test", + "../../../src/Apps/W1/EU3PartyTradePurchase/test", + "../../../src/Apps/W1/ExcelReports/Test", + "../../../src/Apps/W1/ExciseTaxes/test", + "../../../src/Apps/W1/ExternalEvents/test", + "../../../src/Apps/W1/FieldServiceIntegration/test", + "../../../src/Apps/W1/FieldServiceIntegration/test library", + "../../../src/Apps/W1/HybridBaseDeployment/test", + "../../../src/Apps/W1/HybridBC/test", + "../../../src/Apps/W1/HybridBC14/test", + "../../../src/Apps/W1/HybridBCLast/test", + "../../../src/Apps/W1/Intrastat/test", + "../../../src/Apps/W1/LatePaymentPredictor/test", + "../../../src/Apps/W1/Manufacturing/test", + "../../../src/Apps/W1/MasterDataManagement/test", + "../../../src/Apps/W1/MasterDataManagement/test library", + "../../../src/Apps/W1/OnboardingSignals/test", + "../../../src/Apps/W1/Onprem Permissions/test", + "../../../src/Apps/W1/PaymentPractices/Test", + "../../../src/Apps/W1/PaymentPractices/Test Library", + "../../../src/Apps/W1/PayPalPaymentsStandard/test", + "../../../src/Apps/W1/PEPPOL/Test", + "../../../src/Apps/W1/PlanConfiguration/test", + "../../../src/Apps/W1/PowerBIReports/Test", + "../../../src/Apps/W1/PowerBIReports/Test Library", + "../../../src/Apps/W1/Quality Management/test", + "../../../src/Apps/W1/Quality Management/Test Library", + "../../../src/Apps/W1/RecommendedApps/test", + "../../../src/Apps/W1/ReviewGLEntries/test", + "../../../src/Apps/W1/SAF-T/test", + "../../../src/Apps/W1/SalesAndInventoryForecast/test", + "../../../src/Apps/W1/SalesLinesSuggestions/test", + "../../../src/Apps/W1/ServiceDeclaration/test", + "../../../src/Apps/W1/ServiceManagement/test", + "../../../src/Apps/W1/Shopify/Test", + "../../../src/Apps/W1/SimplifiedBankStatementImport/Test", + "../../../src/Apps/W1/StatisticalAccounts/test", + "../../../src/Apps/W1/Subcontracting/Test", + "../../../src/Apps/W1/Subscription Billing/Test", + "../../../src/Apps/W1/Sustainability/test", + "../../../src/Apps/W1/SustainabilityCopilotSuggestion/test", + "../../../src/Apps/W1/VATGroupManagement/test", + "../../../src/Apps/W1/WithholdingTax/test", + "../../../src/Business Foundation/Test", + "../../../src/Layers/W1/Tests/Bank", + "../../../src/Layers/W1/Tests/BCPT-SampleTests", + "../../../src/Layers/W1/Tests/Cash Flow", + "../../../src/Layers/W1/Tests/Cost Accounting", + "../../../src/Layers/W1/Tests/CRM integration", + "../../../src/Layers/W1/Tests/Data Exchange", + "../../../src/Layers/W1/Tests/Dimension", + "../../../src/Layers/W1/Tests/DotNet-Internal", + "../../../src/Layers/W1/Tests/ERM", + "../../../src/Layers/W1/Tests/Fixed Asset", + "../../../src/Layers/W1/Tests/General Journal", + "../../../src/Layers/W1/Tests/Graph", + "../../../src/Layers/W1/Tests/Integration", + "../../../src/Layers/W1/Tests/Integration-Internal", + "../../../src/Layers/W1/Tests/Job", + "../../../src/Layers/W1/Tests/Local", + "../../../src/Layers/W1/Tests/Marketing", + "../../../src/Layers/W1/Tests/Misc", + "../../../src/Layers/W1/Tests/MOCKSERVICETESTS-Internal", + "../../../src/Layers/W1/Tests/Monitor Sensitive Fields", + "../../../src/Layers/W1/Tests/NewObjectTests-Internal", + "../../../src/Layers/W1/Tests/Permissions", + "../../../src/Layers/W1/Tests/Physical Inventory", + "../../../src/Layers/W1/Tests/Prepayment", + "../../../src/Layers/W1/Tests/Rapid Start", + "../../../src/Layers/W1/Tests/Report", + "../../../src/Layers/W1/Tests/Resource", + "../../../src/Layers/W1/Tests/Reverse", + "../../../src/Layers/W1/Tests/SCM", + "../../../src/Layers/W1/Tests/SCM-Assembly", + "../../../src/Layers/W1/Tests/SCM-Manufacturing", + "../../../src/Layers/W1/Tests/SCM-Service", + "../../../src/Layers/W1/Tests/SINGLESERVER", + "../../../src/Layers/W1/Tests/SMB", + "../../../src/Layers/W1/Tests/TestLibraries", + "../../../src/Layers/W1/Tests/TestRunner-Internal", + "../../../src/Layers/W1/Tests/Upgrade", + "../../../src/Layers/W1/Tests/User", + "../../../src/Layers/W1/Tests/VAT", + "../../../src/Layers/W1/Tests/Workflow", + "../../../src/System Application/Partner Test", + "../../../src/System Application/Test", + "../../../src/System Application/Test Library", + "../../../src/Tools/Performance Toolkit/Test", + "../../../src/Tools/Red Team Scan" + ], + "doNotRunTests": true, + "doNotPublishApps": true, + "ConditionalSettings": [ + { + "branches": [ + "releases/*.[0-5]" + ], + "settings": { + "buildModes": [ + "Strict" + ] + } + }, + { + "branches": [ + "main", + "releases/*.x" + ], + "settings": { + "buildModes": [ + "Clean" + ] + } + } + ] } diff --git a/build/projects/Apps GB/.AL-Go/cloudDevEnv.ps1 b/build/projects/Apps GB/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Apps GB/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Apps GB/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps GB/.AL-Go/localDevEnv.ps1 b/build/projects/Apps GB/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Apps GB/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Apps GB/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps GB/.AL-Go/settings.json b/build/projects/Apps GB/.AL-Go/settings.json index e8af6e1d066..edc8cfcf208 100644 --- a/build/projects/Apps GB/.AL-Go/settings.json +++ b/build/projects/Apps GB/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Apps GB", "country": "GB", "appFolders": [ diff --git a/build/projects/Apps IN/.AL-Go/cloudDevEnv.ps1 b/build/projects/Apps IN/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Apps IN/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Apps IN/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps IN/.AL-Go/localDevEnv.ps1 b/build/projects/Apps IN/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Apps IN/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Apps IN/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps IN/.AL-Go/settings.json b/build/projects/Apps IN/.AL-Go/settings.json index cb3064819bf..066533ebb3c 100644 --- a/build/projects/Apps IN/.AL-Go/settings.json +++ b/build/projects/Apps IN/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Apps IN", "country": "IN", "appFolders": [ diff --git a/build/projects/Apps IS/.AL-Go/cloudDevEnv.ps1 b/build/projects/Apps IS/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Apps IS/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Apps IS/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps IS/.AL-Go/localDevEnv.ps1 b/build/projects/Apps IS/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Apps IS/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Apps IS/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps IS/.AL-Go/settings.json b/build/projects/Apps IS/.AL-Go/settings.json index 9d30e76a32b..7b3b2d4f790 100644 --- a/build/projects/Apps IS/.AL-Go/settings.json +++ b/build/projects/Apps IS/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Apps IS", "country": "IS", "appFolders": [ diff --git a/build/projects/Apps IT/.AL-Go/cloudDevEnv.ps1 b/build/projects/Apps IT/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Apps IT/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Apps IT/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps IT/.AL-Go/localDevEnv.ps1 b/build/projects/Apps IT/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Apps IT/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Apps IT/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps IT/.AL-Go/settings.json b/build/projects/Apps IT/.AL-Go/settings.json index 59b80021aef..d39661f5664 100644 --- a/build/projects/Apps IT/.AL-Go/settings.json +++ b/build/projects/Apps IT/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Apps IT", "country": "IT", "appFolders": [ diff --git a/build/projects/Apps MX/.AL-Go/cloudDevEnv.ps1 b/build/projects/Apps MX/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Apps MX/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Apps MX/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps MX/.AL-Go/localDevEnv.ps1 b/build/projects/Apps MX/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Apps MX/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Apps MX/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps MX/.AL-Go/settings.json b/build/projects/Apps MX/.AL-Go/settings.json index a0c9c7178be..971051b4232 100644 --- a/build/projects/Apps MX/.AL-Go/settings.json +++ b/build/projects/Apps MX/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Apps MX", "country": "MX", "appFolders": [ diff --git a/build/projects/Apps NL/.AL-Go/cloudDevEnv.ps1 b/build/projects/Apps NL/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Apps NL/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Apps NL/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps NL/.AL-Go/localDevEnv.ps1 b/build/projects/Apps NL/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Apps NL/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Apps NL/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps NL/.AL-Go/settings.json b/build/projects/Apps NL/.AL-Go/settings.json index c8e4fae192d..98112f24063 100644 --- a/build/projects/Apps NL/.AL-Go/settings.json +++ b/build/projects/Apps NL/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Apps NL", "country": "NL", "appFolders": [ diff --git a/build/projects/Apps NO/.AL-Go/cloudDevEnv.ps1 b/build/projects/Apps NO/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Apps NO/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Apps NO/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps NO/.AL-Go/localDevEnv.ps1 b/build/projects/Apps NO/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Apps NO/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Apps NO/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps NO/.AL-Go/settings.json b/build/projects/Apps NO/.AL-Go/settings.json index 99a8fef369b..a537f79ebde 100644 --- a/build/projects/Apps NO/.AL-Go/settings.json +++ b/build/projects/Apps NO/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Apps NO", "country": "NO", "appFolders": [ diff --git a/build/projects/Apps NZ/.AL-Go/cloudDevEnv.ps1 b/build/projects/Apps NZ/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Apps NZ/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Apps NZ/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps NZ/.AL-Go/localDevEnv.ps1 b/build/projects/Apps NZ/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Apps NZ/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Apps NZ/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps NZ/.AL-Go/settings.json b/build/projects/Apps NZ/.AL-Go/settings.json index f3afb46ef4f..ac01e42c8a8 100644 --- a/build/projects/Apps NZ/.AL-Go/settings.json +++ b/build/projects/Apps NZ/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Apps NZ", "country": "NZ", "appFolders": [ diff --git a/build/projects/Apps RU/.AL-Go/cloudDevEnv.ps1 b/build/projects/Apps RU/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Apps RU/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Apps RU/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps RU/.AL-Go/localDevEnv.ps1 b/build/projects/Apps RU/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Apps RU/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Apps RU/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps RU/.AL-Go/settings.json b/build/projects/Apps RU/.AL-Go/settings.json index 9aac40e4c03..7513423a7bb 100644 --- a/build/projects/Apps RU/.AL-Go/settings.json +++ b/build/projects/Apps RU/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Apps RU", "country": "w1", "appFolders": [ diff --git a/build/projects/Apps SE/.AL-Go/cloudDevEnv.ps1 b/build/projects/Apps SE/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Apps SE/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Apps SE/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps SE/.AL-Go/localDevEnv.ps1 b/build/projects/Apps SE/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Apps SE/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Apps SE/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps SE/.AL-Go/settings.json b/build/projects/Apps SE/.AL-Go/settings.json index cfd5536b837..a50629eca6c 100644 --- a/build/projects/Apps SE/.AL-Go/settings.json +++ b/build/projects/Apps SE/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Apps SE", "country": "SE", "appFolders": [ diff --git a/build/projects/Apps US/.AL-Go/cloudDevEnv.ps1 b/build/projects/Apps US/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Apps US/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Apps US/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps US/.AL-Go/localDevEnv.ps1 b/build/projects/Apps US/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Apps US/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Apps US/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps US/.AL-Go/settings.json b/build/projects/Apps US/.AL-Go/settings.json index 5569c6fa9ff..64b9aef0721 100644 --- a/build/projects/Apps US/.AL-Go/settings.json +++ b/build/projects/Apps US/.AL-Go/settings.json @@ -1,293 +1,293 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", - "projectName": "Apps US", - "country": "US", - "appFolders": [ - "../../../src/Apps/NA/Ceridian/app", - "../../../src/Apps/NA/EnvestnetYodleeBankFeeds/app", - "../../../src/Apps/NA/ExtendedBankDepositNA/app", - "../../../src/Apps/NA/MX_DIOT/app", - "../../../src/Apps/NA/Onprem Permissions NA/app", - "../../../src/Apps/NA/PEPPOLNA/app", - "../../../src/Apps/US/ContosoCoffeeDemoDatasetUS/app", - "../../../src/Apps/US/EDocument_US/demo data", - "../../../src/Apps/US/HybridBCLast_US/app", - "../../../src/Apps/US/HybridGP_US/app", - "../../../src/Apps/US/HybridSL_US/app", - "../../../src/Apps/US/IRS1096/app", - "../../../src/Apps/US/IRSForms/app", - "../../../src/Apps/W1/AgentDesignExperience/app", - "../../../src/Apps/W1/AgentSamples/app", - "../../../src/Apps/W1/AgentSamples/test", - "../../../src/Apps/W1/AIDevelopmentToolkit/app", - "../../../src/Apps/W1/AIDevelopmentToolkitDesign/app", - "../../../src/Apps/W1/AIDevelopmentToolkitEvaluation/app", - "../../../src/Apps/W1/AMCBanking365Fundamentals/app", - "../../../src/Apps/W1/APIReportsFinance/App", - "../../../src/Apps/W1/APIV1/app", - "../../../src/Apps/W1/APIV2/app", - "../../../src/Apps/W1/AuditFileExport/app", - "../../../src/Apps/W1/BankAccRecWithAI/app", - "../../../src/Apps/W1/BankDeposits/app", - "../../../src/Apps/W1/ClientAddIns/app", - "../../../src/Apps/W1/CompanyHub/app", - "../../../src/Apps/W1/ConnectivityApps/app", - "../../../src/Apps/W1/ContosoCoffeeDemoDataset/app", - "../../../src/Apps/W1/CreateProductInformationWithCopilot/app", - "../../../src/Apps/W1/CrossEnvironmentIntercompany/app", - "../../../src/Apps/W1/DataArchive/App", - "../../../src/Apps/W1/DataCorrectionFA/App", - "../../../src/Apps/W1/DataSearch/App", - "../../../src/Apps/W1/DynamicsGPHistoricalData/app", - "../../../src/Apps/W1/DynamicsGPHistorySmartLists/app", - "../../../src/Apps/W1/DynamicsSLHistoricalData/app", - "../../../src/Apps/W1/EDocument/App", - "../../../src/Apps/W1/EDocument/Demo Data", - "../../../src/Apps/W1/EDocumentConnectors/Avalara/App", - "../../../src/Apps/W1/EDocumentConnectors/B2Brouter/app", - "../../../src/Apps/W1/EDocumentConnectors/Continia/app", - "../../../src/Apps/W1/EDocumentConnectors/ForNAV/App", - "../../../src/Apps/W1/EDocumentConnectors/Logiq/app", - "../../../src/Apps/W1/EDocumentConnectors/Microsoft365/app", - "../../../src/Apps/W1/EDocumentConnectors/Pagero/app", - "../../../src/Apps/W1/EDocumentConnectors/SignUp/app", - "../../../src/Apps/W1/Email - Current User Connector/app", - "../../../src/Apps/W1/Email - Microsoft 365 Connector/app", - "../../../src/Apps/W1/Email - Outlook REST API/app", - "../../../src/Apps/W1/Email - SMTP API/app", - "../../../src/Apps/W1/Email - SMTP Connector/app", - "../../../src/Apps/W1/EmailLogging/app", - "../../../src/Apps/W1/EnforcedDigitalVouchers/app", - "../../../src/Apps/W1/ErrorMessagesWithRecommendations/App", - "../../../src/Apps/W1/ESGStatisticalAccountsDemoTool/app", - "../../../src/Apps/W1/EssentialBusinessHeadlines/App", - "../../../src/Apps/W1/ExcelReports/App", - "../../../src/Apps/W1/ExciseTaxes/app", - "../../../src/Apps/W1/External File Storage - Azure Blob Service Connector/App", - "../../../src/Apps/W1/External File Storage - Azure File Service Connector/App", - "../../../src/Apps/W1/External File Storage - SFTP Connector/App", - "../../../src/Apps/W1/External File Storage - SharePoint Connector/App", - "../../../src/Apps/W1/External Storage - Document Attachments/App", - "../../../src/Apps/W1/ExternalEvents/app", - "../../../src/Apps/W1/FieldServiceIntegration/app", - "../../../src/Apps/W1/HybridAPI/app", - "../../../src/Apps/W1/HybridBaseDeployment/app", - "../../../src/Apps/W1/HybridBC/app", - "../../../src/Apps/W1/HybridBC14/app", - "../../../src/Apps/W1/HybridBC14HistoricalData/app", - "../../../src/Apps/W1/HybridBCLast/app", - "../../../src/Apps/W1/HybridGP/app", - "../../../src/Apps/W1/HybridSL/app", - "../../../src/Apps/W1/ImageAnalysis/app", - "../../../src/Apps/W1/Intrastat/app", - "../../../src/Apps/W1/Intrastat/demo data", - "../../../src/Apps/W1/LatePaymentPredictor/app", - "../../../src/Apps/W1/LibraryNoTransactions/app", - "../../../src/Apps/W1/Manufacturing/app", - "../../../src/Apps/W1/MasterDataManagement/app", - "../../../src/Apps/W1/MicrosoftUniversalPrint/app", - "../../../src/Apps/W1/MSWalletPayments/app", - "../../../src/Apps/W1/OnboardingSignals/app", - "../../../src/Apps/W1/Onprem Permissions/app", - "../../../src/Apps/W1/PayablesAgent/app", - "../../../src/Apps/W1/PaymentPractices/App", - "../../../src/Apps/W1/PayPalPaymentsStandard/app", - "../../../src/Apps/W1/PEPPOL/App", - "../../../src/Apps/W1/PlanConfiguration/app", - "../../../src/Apps/W1/PowerBIReports/App", - "../../../src/Apps/W1/QBMigration/app", - "../../../src/Apps/W1/Quality Management/app", - "../../../src/Apps/W1/Quality Management/Demo Data", - "../../../src/Apps/W1/QuickbooksPayrollFileImport/app", - "../../../src/Apps/W1/RecommendedApps/app", - "../../../src/Apps/W1/ReviewGLEntries/app", - "../../../src/Apps/W1/SalesAndInventoryForecast/app", - "../../../src/Apps/W1/SalesLinesSuggestions/app", - "../../../src/Apps/W1/SalesOrderAgent/app", - "../../../src/Apps/W1/SendToEmailPrinter/App", - "../../../src/Apps/W1/ServiceManagement/app", - "../../../src/Apps/W1/Shopify/App", - "../../../src/Apps/W1/SimplifiedBankStatementImport/App", - "../../../src/Apps/W1/SmartList/app", - "../../../src/Apps/W1/StatisticalAccounts/app", - "../../../src/Apps/W1/Subcontracting/App", - "../../../src/Apps/W1/Subscription Billing/App", - "../../../src/Apps/W1/Subscription Billing/Demo Data", - "../../../src/Apps/W1/Sustainability/app", - "../../../src/Apps/W1/SustainabilityContosoCoffeeDemoDataset/app", - "../../../src/Apps/W1/SustainabilityCopilotSuggestion/app", - "../../../src/Apps/W1/SyncBase/app", - "../../../src/Apps/W1/UKSendRemittanceAdvice/App", - "../../../src/Apps/W1/WithholdingTax/app", - "../../../src/Business Foundation/App", - "../../../src/Business Foundation/Test Library", - "../../../src/Layers/W1/Application", - "../../../src/Layers/W1/BaseApp", - "../../../src/Layers/W1/DemoTool", - "../../../src/Layers/W1/Tests/ApplicationTestLibrary", - "../../../src/System Application/App", - "../../../src/Tools/AI Test Toolkit", - "../../../src/Tools/Performance Toolkit/App", - "../../../src/Tools/Test Framework/Test Libraries/Any", - "../../../src/Tools/Test Framework/Test Libraries/Assert", - "../../../src/Tools/Test Framework/Test Libraries/LibraryAgent", - "../../../src/Tools/Test Framework/Test Libraries/Permissions Mock", - "../../../src/Tools/Test Framework/Test Libraries/Variable Storage", - "../../../src/Tools/Test Framework/Test Runner", - "../../../src/Tools/Test Framework/Test Stability Tools/Prevent Metadata Updates" - ], - "testFolders": [ - "../../../src/Apps/NA/EnvestnetYodleeBankFeeds/test", - "../../../src/Apps/NA/MX_DIOT/test", - "../../../src/Apps/US/HybridGP_US/test", - "../../../src/Apps/US/HybridSL_US/test", - "../../../src/Apps/US/IRS1096/test", - "../../../src/Apps/US/IRSForms/test", - "../../../src/Apps/US/IRSForms/test library", - "../../../src/Apps/W1/AMCBanking365Fundamentals/test", - "../../../src/Apps/W1/APIV1/test", - "../../../src/Apps/W1/APIV2/test", - "../../../src/Apps/W1/AuditFileExport/test", - "../../../src/Apps/W1/BankAccRecWithAI/test", - "../../../src/Apps/W1/BankDeposits/test", - "../../../src/Apps/W1/ConnectivityApps/test", - "../../../src/Apps/W1/ContosoCoffeeDemoDataset/test", - "../../../src/Apps/W1/DataArchive/Test", - "../../../src/Apps/W1/DataSearch/Test", - "../../../src/Apps/W1/EDocument/Test", - "../../../src/Apps/W1/EDocumentConnectors/Avalara/Test", - "../../../src/Apps/W1/EDocumentConnectors/B2Brouter/test", - "../../../src/Apps/W1/EDocumentConnectors/Continia/test", - "../../../src/Apps/W1/EDocumentConnectors/ForNav/Test", - "../../../src/Apps/W1/EDocumentConnectors/Logiq/test", - "../../../src/Apps/W1/EDocumentConnectors/Microsoft365/test", - "../../../src/Apps/W1/EDocumentConnectors/Pagero/test", - "../../../src/Apps/W1/EDocumentConnectors/SignUp/test", - "../../../src/Apps/W1/Email - Current User Connector/test", - "../../../src/Apps/W1/Email - Microsoft 365 Connector/test", - "../../../src/Apps/W1/Email - Outlook REST API/test", - "../../../src/Apps/W1/Email - SMTP API/test", - "../../../src/Apps/W1/Email - SMTP API/test library", - "../../../src/Apps/W1/Email - SMTP Connector/test", - "../../../src/Apps/W1/EmailLogging/test", - "../../../src/Apps/W1/EnforcedDigitalVouchers/test", - "../../../src/Apps/W1/EnforcedDigitalVouchers/test library", - "../../../src/Apps/W1/ErrorMessagesWithRecommendations/Test", - "../../../src/Apps/W1/EssentialBusinessHeadlines/Test", - "../../../src/Apps/W1/ExcelReports/Test", - "../../../src/Apps/W1/ExciseTaxes/test", - "../../../src/Apps/W1/ExternalEvents/test", - "../../../src/Apps/W1/FieldServiceIntegration/test", - "../../../src/Apps/W1/FieldServiceIntegration/test library", - "../../../src/Apps/W1/HybridBaseDeployment/test", - "../../../src/Apps/W1/HybridBC/test", - "../../../src/Apps/W1/HybridBC14/test", - "../../../src/Apps/W1/HybridBCLast/test", - "../../../src/Apps/W1/HybridGP/test", - "../../../src/Apps/W1/HybridSL/test", - "../../../src/Apps/W1/ImageAnalysis/test", - "../../../src/Apps/W1/Intrastat/test", - "../../../src/Apps/W1/LatePaymentPredictor/test", - "../../../src/Apps/W1/Manufacturing/test", - "../../../src/Apps/W1/MasterDataManagement/test", - "../../../src/Apps/W1/MasterDataManagement/test library", - "../../../src/Apps/W1/OnboardingSignals/test", - "../../../src/Apps/W1/Onprem Permissions/test", - "../../../src/Apps/W1/PaymentPractices/Test", - "../../../src/Apps/W1/PaymentPractices/Test Library", - "../../../src/Apps/W1/PayPalPaymentsStandard/test", - "../../../src/Apps/W1/PEPPOL/Test", - "../../../src/Apps/W1/PlanConfiguration/test", - "../../../src/Apps/W1/PowerBIReports/Test", - "../../../src/Apps/W1/PowerBIReports/Test Library", - "../../../src/Apps/W1/QBMigration/test", - "../../../src/Apps/W1/Quality Management/test", - "../../../src/Apps/W1/Quality Management/Test Library", - "../../../src/Apps/W1/QuickbooksPayrollFileImport/test", - "../../../src/Apps/W1/RecommendedApps/test", - "../../../src/Apps/W1/ReviewGLEntries/test", - "../../../src/Apps/W1/SalesAndInventoryForecast/test", - "../../../src/Apps/W1/SalesLinesSuggestions/test", - "../../../src/Apps/W1/ServiceManagement/test", - "../../../src/Apps/W1/Shopify/Test", - "../../../src/Apps/W1/SimplifiedBankStatementImport/Test", - "../../../src/Apps/W1/StatisticalAccounts/test", - "../../../src/Apps/W1/Subcontracting/Test", - "../../../src/Apps/W1/Subscription Billing/Test", - "../../../src/Apps/W1/Sustainability/test", - "../../../src/Apps/W1/SustainabilityCopilotSuggestion/test", - "../../../src/Apps/W1/UKSendRemittanceAdvice/Test", - "../../../src/Apps/W1/WithholdingTax/test", - "../../../src/Business Foundation/Test", - "../../../src/Layers/W1/Tests/Bank", - "../../../src/Layers/W1/Tests/BCPT-SampleTests", - "../../../src/Layers/W1/Tests/Cash Flow", - "../../../src/Layers/W1/Tests/Cost Accounting", - "../../../src/Layers/W1/Tests/CRM integration", - "../../../src/Layers/W1/Tests/Data Exchange", - "../../../src/Layers/W1/Tests/Dimension", - "../../../src/Layers/W1/Tests/DotNet-Internal", - "../../../src/Layers/W1/Tests/ERM", - "../../../src/Layers/W1/Tests/Fixed Asset", - "../../../src/Layers/W1/Tests/General Journal", - "../../../src/Layers/W1/Tests/Graph", - "../../../src/Layers/W1/Tests/Integration", - "../../../src/Layers/W1/Tests/Integration-Internal", - "../../../src/Layers/W1/Tests/Job", - "../../../src/Layers/W1/Tests/Local", - "../../../src/Layers/W1/Tests/Marketing", - "../../../src/Layers/W1/Tests/Misc", - "../../../src/Layers/W1/Tests/MOCKSERVICETESTS-Internal", - "../../../src/Layers/W1/Tests/Monitor Sensitive Fields", - "../../../src/Layers/W1/Tests/NewObjectTests-Internal", - "../../../src/Layers/W1/Tests/Permissions", - "../../../src/Layers/W1/Tests/Physical Inventory", - "../../../src/Layers/W1/Tests/Prepayment", - "../../../src/Layers/W1/Tests/Rapid Start", - "../../../src/Layers/W1/Tests/Report", - "../../../src/Layers/W1/Tests/Resource", - "../../../src/Layers/W1/Tests/Reverse", - "../../../src/Layers/W1/Tests/SCM", - "../../../src/Layers/W1/Tests/SCM-Assembly", - "../../../src/Layers/W1/Tests/SCM-Manufacturing", - "../../../src/Layers/W1/Tests/SCM-Service", - "../../../src/Layers/W1/Tests/SINGLESERVER", - "../../../src/Layers/W1/Tests/SMB", - "../../../src/Layers/W1/Tests/TestLibraries", - "../../../src/Layers/W1/Tests/TestRunner-Internal", - "../../../src/Layers/W1/Tests/Upgrade", - "../../../src/Layers/W1/Tests/User", - "../../../src/Layers/W1/Tests/VAT", - "../../../src/Layers/W1/Tests/Workflow", - "../../../src/System Application/Partner Test", - "../../../src/System Application/Test", - "../../../src/System Application/Test Library", - "../../../src/Tools/Performance Toolkit/Test", - "../../../src/Tools/Red Team Scan" - ], - "doNotRunTests": true, - "doNotPublishApps": true, - "ConditionalSettings": [ - { - "branches": [ - "releases/*.[0-5]" - ], - "settings": { - "buildModes": [ - "Strict" - ] - } - }, - { - "branches": [ - "main", - "releases/*.x" - ], - "settings": { - "buildModes": [ - "Clean" - ] - } - } - ] + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", + "projectName": "Apps US", + "country": "US", + "appFolders": [ + "../../../src/Apps/NA/Ceridian/app", + "../../../src/Apps/NA/EnvestnetYodleeBankFeeds/app", + "../../../src/Apps/NA/ExtendedBankDepositNA/app", + "../../../src/Apps/NA/MX_DIOT/app", + "../../../src/Apps/NA/Onprem Permissions NA/app", + "../../../src/Apps/NA/PEPPOLNA/app", + "../../../src/Apps/US/ContosoCoffeeDemoDatasetUS/app", + "../../../src/Apps/US/EDocument_US/demo data", + "../../../src/Apps/US/HybridBCLast_US/app", + "../../../src/Apps/US/HybridGP_US/app", + "../../../src/Apps/US/HybridSL_US/app", + "../../../src/Apps/US/IRS1096/app", + "../../../src/Apps/US/IRSForms/app", + "../../../src/Apps/W1/AgentDesignExperience/app", + "../../../src/Apps/W1/AgentSamples/app", + "../../../src/Apps/W1/AgentSamples/test", + "../../../src/Apps/W1/AIDevelopmentToolkit/app", + "../../../src/Apps/W1/AIDevelopmentToolkitDesign/app", + "../../../src/Apps/W1/AIDevelopmentToolkitEvaluation/app", + "../../../src/Apps/W1/AMCBanking365Fundamentals/app", + "../../../src/Apps/W1/APIReportsFinance/App", + "../../../src/Apps/W1/APIV1/app", + "../../../src/Apps/W1/APIV2/app", + "../../../src/Apps/W1/AuditFileExport/app", + "../../../src/Apps/W1/BankAccRecWithAI/app", + "../../../src/Apps/W1/BankDeposits/app", + "../../../src/Apps/W1/ClientAddIns/app", + "../../../src/Apps/W1/CompanyHub/app", + "../../../src/Apps/W1/ConnectivityApps/app", + "../../../src/Apps/W1/ContosoCoffeeDemoDataset/app", + "../../../src/Apps/W1/CreateProductInformationWithCopilot/app", + "../../../src/Apps/W1/CrossEnvironmentIntercompany/app", + "../../../src/Apps/W1/DataArchive/App", + "../../../src/Apps/W1/DataCorrectionFA/App", + "../../../src/Apps/W1/DataSearch/App", + "../../../src/Apps/W1/DynamicsGPHistoricalData/app", + "../../../src/Apps/W1/DynamicsGPHistorySmartLists/app", + "../../../src/Apps/W1/DynamicsSLHistoricalData/app", + "../../../src/Apps/W1/EDocument/App", + "../../../src/Apps/W1/EDocument/Demo Data", + "../../../src/Apps/W1/EDocumentConnectors/Avalara/App", + "../../../src/Apps/W1/EDocumentConnectors/B2Brouter/app", + "../../../src/Apps/W1/EDocumentConnectors/Continia/app", + "../../../src/Apps/W1/EDocumentConnectors/ForNAV/App", + "../../../src/Apps/W1/EDocumentConnectors/Logiq/app", + "../../../src/Apps/W1/EDocumentConnectors/Microsoft365/app", + "../../../src/Apps/W1/EDocumentConnectors/Pagero/app", + "../../../src/Apps/W1/EDocumentConnectors/SignUp/app", + "../../../src/Apps/W1/Email - Current User Connector/app", + "../../../src/Apps/W1/Email - Microsoft 365 Connector/app", + "../../../src/Apps/W1/Email - Outlook REST API/app", + "../../../src/Apps/W1/Email - SMTP API/app", + "../../../src/Apps/W1/Email - SMTP Connector/app", + "../../../src/Apps/W1/EmailLogging/app", + "../../../src/Apps/W1/EnforcedDigitalVouchers/app", + "../../../src/Apps/W1/ErrorMessagesWithRecommendations/App", + "../../../src/Apps/W1/ESGStatisticalAccountsDemoTool/app", + "../../../src/Apps/W1/EssentialBusinessHeadlines/App", + "../../../src/Apps/W1/ExcelReports/App", + "../../../src/Apps/W1/ExciseTaxes/app", + "../../../src/Apps/W1/External File Storage - Azure Blob Service Connector/App", + "../../../src/Apps/W1/External File Storage - Azure File Service Connector/App", + "../../../src/Apps/W1/External File Storage - SFTP Connector/App", + "../../../src/Apps/W1/External File Storage - SharePoint Connector/App", + "../../../src/Apps/W1/External Storage - Document Attachments/App", + "../../../src/Apps/W1/ExternalEvents/app", + "../../../src/Apps/W1/FieldServiceIntegration/app", + "../../../src/Apps/W1/HybridAPI/app", + "../../../src/Apps/W1/HybridBaseDeployment/app", + "../../../src/Apps/W1/HybridBC/app", + "../../../src/Apps/W1/HybridBC14/app", + "../../../src/Apps/W1/HybridBC14HistoricalData/app", + "../../../src/Apps/W1/HybridBCLast/app", + "../../../src/Apps/W1/HybridGP/app", + "../../../src/Apps/W1/HybridSL/app", + "../../../src/Apps/W1/ImageAnalysis/app", + "../../../src/Apps/W1/Intrastat/app", + "../../../src/Apps/W1/Intrastat/demo data", + "../../../src/Apps/W1/LatePaymentPredictor/app", + "../../../src/Apps/W1/LibraryNoTransactions/app", + "../../../src/Apps/W1/Manufacturing/app", + "../../../src/Apps/W1/MasterDataManagement/app", + "../../../src/Apps/W1/MicrosoftUniversalPrint/app", + "../../../src/Apps/W1/MSWalletPayments/app", + "../../../src/Apps/W1/OnboardingSignals/app", + "../../../src/Apps/W1/Onprem Permissions/app", + "../../../src/Apps/W1/PayablesAgent/app", + "../../../src/Apps/W1/PaymentPractices/App", + "../../../src/Apps/W1/PayPalPaymentsStandard/app", + "../../../src/Apps/W1/PEPPOL/App", + "../../../src/Apps/W1/PlanConfiguration/app", + "../../../src/Apps/W1/PowerBIReports/App", + "../../../src/Apps/W1/QBMigration/app", + "../../../src/Apps/W1/Quality Management/app", + "../../../src/Apps/W1/Quality Management/Demo Data", + "../../../src/Apps/W1/QuickbooksPayrollFileImport/app", + "../../../src/Apps/W1/RecommendedApps/app", + "../../../src/Apps/W1/ReviewGLEntries/app", + "../../../src/Apps/W1/SalesAndInventoryForecast/app", + "../../../src/Apps/W1/SalesLinesSuggestions/app", + "../../../src/Apps/W1/SalesOrderAgent/app", + "../../../src/Apps/W1/SendToEmailPrinter/App", + "../../../src/Apps/W1/ServiceManagement/app", + "../../../src/Apps/W1/Shopify/App", + "../../../src/Apps/W1/SimplifiedBankStatementImport/App", + "../../../src/Apps/W1/SmartList/app", + "../../../src/Apps/W1/StatisticalAccounts/app", + "../../../src/Apps/W1/Subcontracting/App", + "../../../src/Apps/W1/Subscription Billing/App", + "../../../src/Apps/W1/Subscription Billing/Demo Data", + "../../../src/Apps/W1/Sustainability/app", + "../../../src/Apps/W1/SustainabilityContosoCoffeeDemoDataset/app", + "../../../src/Apps/W1/SustainabilityCopilotSuggestion/app", + "../../../src/Apps/W1/SyncBase/app", + "../../../src/Apps/W1/UKSendRemittanceAdvice/App", + "../../../src/Apps/W1/WithholdingTax/app", + "../../../src/Business Foundation/App", + "../../../src/Business Foundation/Test Library", + "../../../src/Layers/W1/Application", + "../../../src/Layers/W1/BaseApp", + "../../../src/Layers/W1/DemoTool", + "../../../src/Layers/W1/Tests/ApplicationTestLibrary", + "../../../src/System Application/App", + "../../../src/Tools/AI Test Toolkit", + "../../../src/Tools/Performance Toolkit/App", + "../../../src/Tools/Test Framework/Test Libraries/Any", + "../../../src/Tools/Test Framework/Test Libraries/Assert", + "../../../src/Tools/Test Framework/Test Libraries/LibraryAgent", + "../../../src/Tools/Test Framework/Test Libraries/Permissions Mock", + "../../../src/Tools/Test Framework/Test Libraries/Variable Storage", + "../../../src/Tools/Test Framework/Test Runner", + "../../../src/Tools/Test Framework/Test Stability Tools/Prevent Metadata Updates" + ], + "testFolders": [ + "../../../src/Apps/NA/EnvestnetYodleeBankFeeds/test", + "../../../src/Apps/NA/MX_DIOT/test", + "../../../src/Apps/US/HybridGP_US/test", + "../../../src/Apps/US/HybridSL_US/test", + "../../../src/Apps/US/IRS1096/test", + "../../../src/Apps/US/IRSForms/test", + "../../../src/Apps/US/IRSForms/test library", + "../../../src/Apps/W1/AMCBanking365Fundamentals/test", + "../../../src/Apps/W1/APIV1/test", + "../../../src/Apps/W1/APIV2/test", + "../../../src/Apps/W1/AuditFileExport/test", + "../../../src/Apps/W1/BankAccRecWithAI/test", + "../../../src/Apps/W1/BankDeposits/test", + "../../../src/Apps/W1/ConnectivityApps/test", + "../../../src/Apps/W1/ContosoCoffeeDemoDataset/test", + "../../../src/Apps/W1/DataArchive/Test", + "../../../src/Apps/W1/DataSearch/Test", + "../../../src/Apps/W1/EDocument/Test", + "../../../src/Apps/W1/EDocumentConnectors/Avalara/Test", + "../../../src/Apps/W1/EDocumentConnectors/B2Brouter/test", + "../../../src/Apps/W1/EDocumentConnectors/Continia/test", + "../../../src/Apps/W1/EDocumentConnectors/ForNav/Test", + "../../../src/Apps/W1/EDocumentConnectors/Logiq/test", + "../../../src/Apps/W1/EDocumentConnectors/Microsoft365/test", + "../../../src/Apps/W1/EDocumentConnectors/Pagero/test", + "../../../src/Apps/W1/EDocumentConnectors/SignUp/test", + "../../../src/Apps/W1/Email - Current User Connector/test", + "../../../src/Apps/W1/Email - Microsoft 365 Connector/test", + "../../../src/Apps/W1/Email - Outlook REST API/test", + "../../../src/Apps/W1/Email - SMTP API/test", + "../../../src/Apps/W1/Email - SMTP API/test library", + "../../../src/Apps/W1/Email - SMTP Connector/test", + "../../../src/Apps/W1/EmailLogging/test", + "../../../src/Apps/W1/EnforcedDigitalVouchers/test", + "../../../src/Apps/W1/EnforcedDigitalVouchers/test library", + "../../../src/Apps/W1/ErrorMessagesWithRecommendations/Test", + "../../../src/Apps/W1/EssentialBusinessHeadlines/Test", + "../../../src/Apps/W1/ExcelReports/Test", + "../../../src/Apps/W1/ExciseTaxes/test", + "../../../src/Apps/W1/ExternalEvents/test", + "../../../src/Apps/W1/FieldServiceIntegration/test", + "../../../src/Apps/W1/FieldServiceIntegration/test library", + "../../../src/Apps/W1/HybridBaseDeployment/test", + "../../../src/Apps/W1/HybridBC/test", + "../../../src/Apps/W1/HybridBC14/test", + "../../../src/Apps/W1/HybridBCLast/test", + "../../../src/Apps/W1/HybridGP/test", + "../../../src/Apps/W1/HybridSL/test", + "../../../src/Apps/W1/ImageAnalysis/test", + "../../../src/Apps/W1/Intrastat/test", + "../../../src/Apps/W1/LatePaymentPredictor/test", + "../../../src/Apps/W1/Manufacturing/test", + "../../../src/Apps/W1/MasterDataManagement/test", + "../../../src/Apps/W1/MasterDataManagement/test library", + "../../../src/Apps/W1/OnboardingSignals/test", + "../../../src/Apps/W1/Onprem Permissions/test", + "../../../src/Apps/W1/PaymentPractices/Test", + "../../../src/Apps/W1/PaymentPractices/Test Library", + "../../../src/Apps/W1/PayPalPaymentsStandard/test", + "../../../src/Apps/W1/PEPPOL/Test", + "../../../src/Apps/W1/PlanConfiguration/test", + "../../../src/Apps/W1/PowerBIReports/Test", + "../../../src/Apps/W1/PowerBIReports/Test Library", + "../../../src/Apps/W1/QBMigration/test", + "../../../src/Apps/W1/Quality Management/test", + "../../../src/Apps/W1/Quality Management/Test Library", + "../../../src/Apps/W1/QuickbooksPayrollFileImport/test", + "../../../src/Apps/W1/RecommendedApps/test", + "../../../src/Apps/W1/ReviewGLEntries/test", + "../../../src/Apps/W1/SalesAndInventoryForecast/test", + "../../../src/Apps/W1/SalesLinesSuggestions/test", + "../../../src/Apps/W1/ServiceManagement/test", + "../../../src/Apps/W1/Shopify/Test", + "../../../src/Apps/W1/SimplifiedBankStatementImport/Test", + "../../../src/Apps/W1/StatisticalAccounts/test", + "../../../src/Apps/W1/Subcontracting/Test", + "../../../src/Apps/W1/Subscription Billing/Test", + "../../../src/Apps/W1/Sustainability/test", + "../../../src/Apps/W1/SustainabilityCopilotSuggestion/test", + "../../../src/Apps/W1/UKSendRemittanceAdvice/Test", + "../../../src/Apps/W1/WithholdingTax/test", + "../../../src/Business Foundation/Test", + "../../../src/Layers/W1/Tests/Bank", + "../../../src/Layers/W1/Tests/BCPT-SampleTests", + "../../../src/Layers/W1/Tests/Cash Flow", + "../../../src/Layers/W1/Tests/Cost Accounting", + "../../../src/Layers/W1/Tests/CRM integration", + "../../../src/Layers/W1/Tests/Data Exchange", + "../../../src/Layers/W1/Tests/Dimension", + "../../../src/Layers/W1/Tests/DotNet-Internal", + "../../../src/Layers/W1/Tests/ERM", + "../../../src/Layers/W1/Tests/Fixed Asset", + "../../../src/Layers/W1/Tests/General Journal", + "../../../src/Layers/W1/Tests/Graph", + "../../../src/Layers/W1/Tests/Integration", + "../../../src/Layers/W1/Tests/Integration-Internal", + "../../../src/Layers/W1/Tests/Job", + "../../../src/Layers/W1/Tests/Local", + "../../../src/Layers/W1/Tests/Marketing", + "../../../src/Layers/W1/Tests/Misc", + "../../../src/Layers/W1/Tests/MOCKSERVICETESTS-Internal", + "../../../src/Layers/W1/Tests/Monitor Sensitive Fields", + "../../../src/Layers/W1/Tests/NewObjectTests-Internal", + "../../../src/Layers/W1/Tests/Permissions", + "../../../src/Layers/W1/Tests/Physical Inventory", + "../../../src/Layers/W1/Tests/Prepayment", + "../../../src/Layers/W1/Tests/Rapid Start", + "../../../src/Layers/W1/Tests/Report", + "../../../src/Layers/W1/Tests/Resource", + "../../../src/Layers/W1/Tests/Reverse", + "../../../src/Layers/W1/Tests/SCM", + "../../../src/Layers/W1/Tests/SCM-Assembly", + "../../../src/Layers/W1/Tests/SCM-Manufacturing", + "../../../src/Layers/W1/Tests/SCM-Service", + "../../../src/Layers/W1/Tests/SINGLESERVER", + "../../../src/Layers/W1/Tests/SMB", + "../../../src/Layers/W1/Tests/TestLibraries", + "../../../src/Layers/W1/Tests/TestRunner-Internal", + "../../../src/Layers/W1/Tests/Upgrade", + "../../../src/Layers/W1/Tests/User", + "../../../src/Layers/W1/Tests/VAT", + "../../../src/Layers/W1/Tests/Workflow", + "../../../src/System Application/Partner Test", + "../../../src/System Application/Test", + "../../../src/System Application/Test Library", + "../../../src/Tools/Performance Toolkit/Test", + "../../../src/Tools/Red Team Scan" + ], + "doNotRunTests": true, + "doNotPublishApps": true, + "ConditionalSettings": [ + { + "branches": [ + "releases/*.[0-5]" + ], + "settings": { + "buildModes": [ + "Strict" + ] + } + }, + { + "branches": [ + "main", + "releases/*.x" + ], + "settings": { + "buildModes": [ + "Clean" + ] + } + } + ] } diff --git a/build/projects/Apps W1/.AL-Go/cloudDevEnv.ps1 b/build/projects/Apps W1/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Apps W1/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Apps W1/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps W1/.AL-Go/localDevEnv.ps1 b/build/projects/Apps W1/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Apps W1/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Apps W1/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Apps W1/.AL-Go/settings.json b/build/projects/Apps W1/.AL-Go/settings.json index b6f66ac1588..2726954d25b 100644 --- a/build/projects/Apps W1/.AL-Go/settings.json +++ b/build/projects/Apps W1/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Apps W1", "appFolders": [ "../../../src/Apps/W1/AgentDesignExperience/app", diff --git a/build/projects/System Application Modules/.AL-Go/cloudDevEnv.ps1 b/build/projects/System Application Modules/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/System Application Modules/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/System Application Modules/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/System Application Modules/.AL-Go/localDevEnv.ps1 b/build/projects/System Application Modules/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/System Application Modules/.AL-Go/localDevEnv.ps1 +++ b/build/projects/System Application Modules/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/System Application Modules/.AL-Go/settings.json b/build/projects/System Application Modules/.AL-Go/settings.json index 28784f35e56..561f9961c2a 100644 --- a/build/projects/System Application Modules/.AL-Go/settings.json +++ b/build/projects/System Application Modules/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "System Application Modules", "appFolders": [ "../../../src/System Application/App/*", diff --git a/build/projects/Test Apps AT/.AL-Go/cloudDevEnv.ps1 b/build/projects/Test Apps AT/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Test Apps AT/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Test Apps AT/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps AT/.AL-Go/localDevEnv.ps1 b/build/projects/Test Apps AT/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Test Apps AT/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Test Apps AT/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps AT/.AL-Go/settings.json b/build/projects/Test Apps AT/.AL-Go/settings.json index cdb7b31140b..dec7a35c0ab 100644 --- a/build/projects/Test Apps AT/.AL-Go/settings.json +++ b/build/projects/Test Apps AT/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Unit Tests (AT)", "gitHubRunner": "GitHub-BCAppsPL", "projectsToTest": [ diff --git a/build/projects/Test Apps AU/.AL-Go/cloudDevEnv.ps1 b/build/projects/Test Apps AU/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Test Apps AU/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Test Apps AU/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps AU/.AL-Go/localDevEnv.ps1 b/build/projects/Test Apps AU/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Test Apps AU/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Test Apps AU/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps AU/.AL-Go/settings.json b/build/projects/Test Apps AU/.AL-Go/settings.json index a9ee66d6487..f0ee654ef90 100644 --- a/build/projects/Test Apps AU/.AL-Go/settings.json +++ b/build/projects/Test Apps AU/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Unit Tests (AU)", "gitHubRunner": "GitHub-BCAppsPL", "projectsToTest": [ diff --git a/build/projects/Test Apps BE/.AL-Go/cloudDevEnv.ps1 b/build/projects/Test Apps BE/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Test Apps BE/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Test Apps BE/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps BE/.AL-Go/localDevEnv.ps1 b/build/projects/Test Apps BE/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Test Apps BE/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Test Apps BE/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps BE/.AL-Go/settings.json b/build/projects/Test Apps BE/.AL-Go/settings.json index 19eb78d5b99..392113e4d74 100644 --- a/build/projects/Test Apps BE/.AL-Go/settings.json +++ b/build/projects/Test Apps BE/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Unit Tests (BE)", "gitHubRunner": "GitHub-BCAppsPL", "projectsToTest": [ diff --git a/build/projects/Test Apps CA/.AL-Go/cloudDevEnv.ps1 b/build/projects/Test Apps CA/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Test Apps CA/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Test Apps CA/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps CA/.AL-Go/localDevEnv.ps1 b/build/projects/Test Apps CA/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Test Apps CA/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Test Apps CA/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps CA/.AL-Go/settings.json b/build/projects/Test Apps CA/.AL-Go/settings.json index 684bd5673e4..ffe55ab8b02 100644 --- a/build/projects/Test Apps CA/.AL-Go/settings.json +++ b/build/projects/Test Apps CA/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Unit Tests (CA)", "gitHubRunner": "GitHub-BCAppsPL", "projectsToTest": [ diff --git a/build/projects/Test Apps CH/.AL-Go/cloudDevEnv.ps1 b/build/projects/Test Apps CH/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Test Apps CH/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Test Apps CH/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps CH/.AL-Go/localDevEnv.ps1 b/build/projects/Test Apps CH/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Test Apps CH/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Test Apps CH/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps CH/.AL-Go/settings.json b/build/projects/Test Apps CH/.AL-Go/settings.json index cce679f26e6..985a300bfaf 100644 --- a/build/projects/Test Apps CH/.AL-Go/settings.json +++ b/build/projects/Test Apps CH/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Unit Tests (CH)", "gitHubRunner": "GitHub-BCAppsPL", "projectsToTest": [ diff --git a/build/projects/Test Apps CZ/.AL-Go/cloudDevEnv.ps1 b/build/projects/Test Apps CZ/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Test Apps CZ/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Test Apps CZ/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps CZ/.AL-Go/localDevEnv.ps1 b/build/projects/Test Apps CZ/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Test Apps CZ/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Test Apps CZ/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps CZ/.AL-Go/settings.json b/build/projects/Test Apps CZ/.AL-Go/settings.json index 3a56bfaf830..2084aec0c47 100644 --- a/build/projects/Test Apps CZ/.AL-Go/settings.json +++ b/build/projects/Test Apps CZ/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Unit Tests (CZ)", "gitHubRunner": "GitHub-BCAppsPL", "projectsToTest": [ diff --git a/build/projects/Test Apps DE/.AL-Go/cloudDevEnv.ps1 b/build/projects/Test Apps DE/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Test Apps DE/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Test Apps DE/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps DE/.AL-Go/localDevEnv.ps1 b/build/projects/Test Apps DE/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Test Apps DE/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Test Apps DE/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps DE/.AL-Go/settings.json b/build/projects/Test Apps DE/.AL-Go/settings.json index 294c208adf3..24d8bb0bf0f 100644 --- a/build/projects/Test Apps DE/.AL-Go/settings.json +++ b/build/projects/Test Apps DE/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Unit Tests (DE)", "gitHubRunner": "GitHub-BCAppsPL", "projectsToTest": [ diff --git a/build/projects/Test Apps DK/.AL-Go/cloudDevEnv.ps1 b/build/projects/Test Apps DK/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Test Apps DK/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Test Apps DK/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps DK/.AL-Go/localDevEnv.ps1 b/build/projects/Test Apps DK/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Test Apps DK/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Test Apps DK/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps DK/.AL-Go/settings.json b/build/projects/Test Apps DK/.AL-Go/settings.json index 539b88e4e9d..763eadebd4e 100644 --- a/build/projects/Test Apps DK/.AL-Go/settings.json +++ b/build/projects/Test Apps DK/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Unit Tests (DK)", "gitHubRunner": "GitHub-BCAppsPL", "projectsToTest": [ diff --git a/build/projects/Test Apps ES/.AL-Go/cloudDevEnv.ps1 b/build/projects/Test Apps ES/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Test Apps ES/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Test Apps ES/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps ES/.AL-Go/localDevEnv.ps1 b/build/projects/Test Apps ES/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Test Apps ES/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Test Apps ES/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps ES/.AL-Go/settings.json b/build/projects/Test Apps ES/.AL-Go/settings.json index b20fba17c07..70a00484151 100644 --- a/build/projects/Test Apps ES/.AL-Go/settings.json +++ b/build/projects/Test Apps ES/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Unit Tests (ES)", "gitHubRunner": "GitHub-BCAppsPL", "projectsToTest": [ diff --git a/build/projects/Test Apps FI/.AL-Go/cloudDevEnv.ps1 b/build/projects/Test Apps FI/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Test Apps FI/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Test Apps FI/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps FI/.AL-Go/localDevEnv.ps1 b/build/projects/Test Apps FI/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Test Apps FI/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Test Apps FI/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps FI/.AL-Go/settings.json b/build/projects/Test Apps FI/.AL-Go/settings.json index b00e02b68a7..9d0da77335e 100644 --- a/build/projects/Test Apps FI/.AL-Go/settings.json +++ b/build/projects/Test Apps FI/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Unit Tests (FI)", "gitHubRunner": "GitHub-BCAppsPL", "projectsToTest": [ diff --git a/build/projects/Test Apps FR/.AL-Go/cloudDevEnv.ps1 b/build/projects/Test Apps FR/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Test Apps FR/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Test Apps FR/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps FR/.AL-Go/localDevEnv.ps1 b/build/projects/Test Apps FR/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Test Apps FR/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Test Apps FR/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps FR/.AL-Go/settings.json b/build/projects/Test Apps FR/.AL-Go/settings.json index 345796b775f..19c6e88bf27 100644 --- a/build/projects/Test Apps FR/.AL-Go/settings.json +++ b/build/projects/Test Apps FR/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Unit Tests (FR)", "gitHubRunner": "GitHub-BCAppsPL", "projectsToTest": [ diff --git a/build/projects/Test Apps GB/.AL-Go/cloudDevEnv.ps1 b/build/projects/Test Apps GB/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Test Apps GB/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Test Apps GB/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps GB/.AL-Go/localDevEnv.ps1 b/build/projects/Test Apps GB/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Test Apps GB/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Test Apps GB/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps GB/.AL-Go/settings.json b/build/projects/Test Apps GB/.AL-Go/settings.json index 30654ede900..211c1e234c9 100644 --- a/build/projects/Test Apps GB/.AL-Go/settings.json +++ b/build/projects/Test Apps GB/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Unit Tests (GB)", "gitHubRunner": "GitHub-BCAppsPL", "projectsToTest": [ diff --git a/build/projects/Test Apps IN/.AL-Go/cloudDevEnv.ps1 b/build/projects/Test Apps IN/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Test Apps IN/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Test Apps IN/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps IN/.AL-Go/localDevEnv.ps1 b/build/projects/Test Apps IN/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Test Apps IN/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Test Apps IN/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps IN/.AL-Go/settings.json b/build/projects/Test Apps IN/.AL-Go/settings.json index 465d92cbf99..f7272cf9b32 100644 --- a/build/projects/Test Apps IN/.AL-Go/settings.json +++ b/build/projects/Test Apps IN/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Unit Tests (IN)", "gitHubRunner": "GitHub-BCAppsPL", "projectsToTest": [ diff --git a/build/projects/Test Apps IS/.AL-Go/cloudDevEnv.ps1 b/build/projects/Test Apps IS/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Test Apps IS/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Test Apps IS/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps IS/.AL-Go/localDevEnv.ps1 b/build/projects/Test Apps IS/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Test Apps IS/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Test Apps IS/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps IS/.AL-Go/settings.json b/build/projects/Test Apps IS/.AL-Go/settings.json index ad842c4342c..48baf4caed6 100644 --- a/build/projects/Test Apps IS/.AL-Go/settings.json +++ b/build/projects/Test Apps IS/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Unit Tests (IS)", "gitHubRunner": "GitHub-BCAppsPL", "projectsToTest": [ diff --git a/build/projects/Test Apps IT/.AL-Go/cloudDevEnv.ps1 b/build/projects/Test Apps IT/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Test Apps IT/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Test Apps IT/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps IT/.AL-Go/localDevEnv.ps1 b/build/projects/Test Apps IT/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Test Apps IT/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Test Apps IT/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps IT/.AL-Go/settings.json b/build/projects/Test Apps IT/.AL-Go/settings.json index 21efb30f94f..ccfca49834a 100644 --- a/build/projects/Test Apps IT/.AL-Go/settings.json +++ b/build/projects/Test Apps IT/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Unit Tests (IT)", "gitHubRunner": "GitHub-BCAppsPL", "projectsToTest": [ diff --git a/build/projects/Test Apps MX/.AL-Go/cloudDevEnv.ps1 b/build/projects/Test Apps MX/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Test Apps MX/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Test Apps MX/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps MX/.AL-Go/localDevEnv.ps1 b/build/projects/Test Apps MX/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Test Apps MX/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Test Apps MX/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps MX/.AL-Go/settings.json b/build/projects/Test Apps MX/.AL-Go/settings.json index 3a3436ce21c..451cf33e6f6 100644 --- a/build/projects/Test Apps MX/.AL-Go/settings.json +++ b/build/projects/Test Apps MX/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Unit Tests (MX)", "gitHubRunner": "GitHub-BCAppsPL", "projectsToTest": [ diff --git a/build/projects/Test Apps NL/.AL-Go/cloudDevEnv.ps1 b/build/projects/Test Apps NL/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Test Apps NL/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Test Apps NL/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps NL/.AL-Go/localDevEnv.ps1 b/build/projects/Test Apps NL/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Test Apps NL/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Test Apps NL/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps NL/.AL-Go/settings.json b/build/projects/Test Apps NL/.AL-Go/settings.json index 72ea6cb72a3..bb53b9160e9 100644 --- a/build/projects/Test Apps NL/.AL-Go/settings.json +++ b/build/projects/Test Apps NL/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Unit Tests (NL)", "gitHubRunner": "GitHub-BCAppsPL", "projectsToTest": [ diff --git a/build/projects/Test Apps NO/.AL-Go/cloudDevEnv.ps1 b/build/projects/Test Apps NO/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Test Apps NO/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Test Apps NO/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps NO/.AL-Go/localDevEnv.ps1 b/build/projects/Test Apps NO/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Test Apps NO/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Test Apps NO/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps NO/.AL-Go/settings.json b/build/projects/Test Apps NO/.AL-Go/settings.json index 9a61b97c0ef..71b148110fe 100644 --- a/build/projects/Test Apps NO/.AL-Go/settings.json +++ b/build/projects/Test Apps NO/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Unit Tests (NO)", "gitHubRunner": "GitHub-BCAppsPL", "projectsToTest": [ diff --git a/build/projects/Test Apps NZ/.AL-Go/cloudDevEnv.ps1 b/build/projects/Test Apps NZ/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Test Apps NZ/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Test Apps NZ/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps NZ/.AL-Go/localDevEnv.ps1 b/build/projects/Test Apps NZ/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Test Apps NZ/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Test Apps NZ/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps NZ/.AL-Go/settings.json b/build/projects/Test Apps NZ/.AL-Go/settings.json index db3e591e8f6..7cf0b0411a6 100644 --- a/build/projects/Test Apps NZ/.AL-Go/settings.json +++ b/build/projects/Test Apps NZ/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Unit Tests (NZ)", "gitHubRunner": "GitHub-BCAppsPL", "projectsToTest": [ diff --git a/build/projects/Test Apps SE/.AL-Go/cloudDevEnv.ps1 b/build/projects/Test Apps SE/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Test Apps SE/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Test Apps SE/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps SE/.AL-Go/localDevEnv.ps1 b/build/projects/Test Apps SE/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Test Apps SE/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Test Apps SE/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps SE/.AL-Go/settings.json b/build/projects/Test Apps SE/.AL-Go/settings.json index 9221cc75be7..b548d74cd43 100644 --- a/build/projects/Test Apps SE/.AL-Go/settings.json +++ b/build/projects/Test Apps SE/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Unit Tests (SE)", "gitHubRunner": "GitHub-BCAppsPL", "projectsToTest": [ diff --git a/build/projects/Test Apps US/.AL-Go/cloudDevEnv.ps1 b/build/projects/Test Apps US/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Test Apps US/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Test Apps US/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps US/.AL-Go/localDevEnv.ps1 b/build/projects/Test Apps US/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Test Apps US/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Test Apps US/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps US/.AL-Go/settings.json b/build/projects/Test Apps US/.AL-Go/settings.json index a49126bf248..bd7227c62f5 100644 --- a/build/projects/Test Apps US/.AL-Go/settings.json +++ b/build/projects/Test Apps US/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Unit Tests (US)", "gitHubRunner": "GitHub-BCAppsPL", "projectsToTest": [ diff --git a/build/projects/Test Apps W1/.AL-Go/cloudDevEnv.ps1 b/build/projects/Test Apps W1/.AL-Go/cloudDevEnv.ps1 index 43992bb4fd3..bf0dec76fcd 100644 --- a/build/projects/Test Apps W1/.AL-Go/cloudDevEnv.ps1 +++ b/build/projects/Test Apps W1/.AL-Go/cloudDevEnv.ps1 @@ -141,12 +141,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps W1/.AL-Go/localDevEnv.ps1 b/build/projects/Test Apps W1/.AL-Go/localDevEnv.ps1 index 87299207ce9..058ddc458a2 100644 --- a/build/projects/Test Apps W1/.AL-Go/localDevEnv.ps1 +++ b/build/projects/Test Apps W1/.AL-Go/localDevEnv.ps1 @@ -154,12 +154,12 @@ Write-Host -ForegroundColor Yellow @' $tmpFolder = Join-Path ([System.IO.Path]::GetTempPath()) "$([Guid]::NewGuid().ToString())" New-Item -Path $tmpFolder -ItemType Directory -Force | Out-Null -$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt -$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder -$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder -$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/AL-Go-Helper.ps1' -folder $tmpFolder -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null -DownloadHelperFile -url 'https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null +$GitHubHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Github-Helper.psm1' -folder $tmpFolder -notifyAuthenticatedAttempt +$ReadSettingsModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/ReadSettings.psm1' -folder $tmpFolder +$debugLoggingModule = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/DebugLogHelper.psm1' -folder $tmpFolder +$ALGoHelperPath = DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/AL-Go-Helper.ps1' -folder $tmpFolder +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json' -folder $tmpFolder | Out-Null +DownloadHelperFile -url 'https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/Environment.Packages.proj' -folder $tmpFolder | Out-Null Import-Module $GitHubHelperPath Import-Module $ReadSettingsModule diff --git a/build/projects/Test Apps W1/.AL-Go/settings.json b/build/projects/Test Apps W1/.AL-Go/settings.json index 7c39ed3ea08..273ba520944 100644 --- a/build/projects/Test Apps W1/.AL-Go/settings.json +++ b/build/projects/Test Apps W1/.AL-Go/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/microsoft/AL-Go/16948d91ca57e875e3d823536bac740c0ca1fdbd/Actions/.Modules/settings.schema.json", + "$schema": "https://raw.githubusercontent.com/spetersenms/AL-Go/spetersen-microsoft-separate-test-action-bcapps/Actions/.Modules/settings.schema.json", "projectName": "Unit Tests", "gitHubRunner": "GitHub-BCAppsPL", "country": "w1",