[main] Update AL-Go System Files from microsoft/AL-Go-AppSource@preview - 384c48472d243099ff7c570c0e7e4d54bfd4637d #18
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
v6.1
Issues
New Project Settings
pageScriptingTestsshould be an array of page scripting test file specifications, relative to the AL-Go project. Examples of file specifications:recordings/my*.yml(for all yaml files in the recordings subfolder matching my*.yml),recordings(for all *.yml files in the recordings subfolder) orrecordings/test.yml(for a single yml file)doNotRunPageScriptingTestscan force the pipeline to NOT run the page scripting tests specified in pageScriptingTests. Note this setting can be set in a workflow specific settings file to only apply to that workflowrestoreDatabasesshould be an array of events, indicating when you want to start with clean databases in the container. Possible events are:BeforeBcpTests,BeforePageScriptingTests,BeforeEachTestApp,BeforeEachBcptTestApp,BeforeEachPageScriptingTestNew Repository Settings
trustedSigningis a structure definingAccount,EndPointandCertificateProfileif you want to use trusted signing. Note that your Azure_Credentials secret (Microsoft Entra ID App or Managed identity) still needs to provide access to your azure subscription and be assigned theTrusted Signing Certificate Profile Signerrole in the Trusted Signing Account.deployTo<environment>now has an additional property called DependencyInstallMode, which determines how dependencies are deployed if GenerateDependencyArtifact is true. Default value isinstallto install dependencies if not already installed. Other values areignorefor ignoring dependencies,upgradefor upgrading dependencies if possible andforceUpgradefor force upgrading dependencies.Support for Azure Trusted Signing
Read https://learn.microsoft.com/en-us/azure/trusted-signing/ for more information about Trusted Signing and how to set it up. After setting up your trusted signing account and certificate profile, you need to create a setting called trustedSigning for AL-Go to sign your apps using Azure Trusted Signing.
Support for Page Scripting Tests
Page Scripting tests are now supported as part of CI/CD. By specifying pageScriptingTests in your project settings file, AL-Go for GitHub will automatically run these page scripting tests as part of your CI/CD workflow, generating the following build artifacts:
PageScriptingTestResultsis a JUnit test results file with all results combined.PageScriptingTestResultDetailsare the detailed test results (including videos) when any of the page scripting tests have failures. If the page scripting tests succeed - the details are not published.Experimental support for Git submodule
Git submodule is now supported as part of CI/CD on your project.