[releases/25.0@a4cd737] Update AL-Go System Files from microsoft/AL-Go-PTE@preview - a7e66c8 / Related to AB#539394#7379
Merged
business-central-bot[bot] merged 1 commit intoreleases/25.0from Mar 25, 2026
Conversation
…o-PTE@preview - a7e66c8 / Related to AB#539394
aholstrup1
approved these changes
Mar 25, 2026
mazhelez
approved these changes
Mar 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
preview
Note that when using the preview version of AL-Go for GitHub, we recommend you Update your AL-Go system files, as soon as possible when informed that an update is available.
Added support for workspace compilation
With v28 of Business Central, the ALTool now also provides the ability to compile workspaces of apps. This has the added advantage that the ALTool can compute the dependency graph for the apps in the workspace and compile apps in parallel (if possible). For AL-Go projects with large amounts of apps that can save a lot of time. If you want to try this out you can enable it via the following setting
By default apps are compiled sequentially but this can be changed via the parallelism property. This allows you to configure the maximum amount of parallel compilation processes. Set to 0 or -1 to use all available processors.
Test Projects — split builds and tests for faster feedback
AL-Go now supports test projects: a new project type that separates test execution from compilation. A test project does not build any apps itself — instead it depends on one or more regular projects, installs the apps they produce, and runs tests against them.
This lets you re-run tests without waiting for a full recompilation, and makes it easy to organize large repositories where builds and test suites have different scopes or cadences.
Getting started
Add a
projectsToTestsetting to the project-level.AL-Go/settings.jsonof an empty project (noappFoldersortestFolders):{ "projectsToTest": ["build/projects/MyProject"] }AL-Go will automatically:
Key rules
appFolders,testFolders, orbcptTestFolders). AL-Go will fail with a clear error if it detects bothprojectsToTestand buildable folders."projectsToTest": ["build/projects/ProjectA", "build/projects/ProjectB"].Improving error detection and build reliability when downloading project dependencies
The
DownloadProjectDependenciesaction now downloads app files from URLs specified in theinstallAppsandinstallTestAppssettings upfront, rather than validating URLs at build time. This change provides:Improve overall performance by postponing projects with no dependants
The time it takes to build projects can vary significantly depending on factors such as whether you are using Linux or Windows, Containers or CompilerFolders, and whether apps are being published or tests are being run.
By default, projects are built according to their dependency order. As soon as all dependencies for a project are satisfied, the project is added to the next layer of jobs.
The new setting
postponeProjectInBuildOrderallows you to delay long running jobs (f.ex. test runs) with no dependants until the final layer of the build order. This can improve overall build performance by preventing subsequent layers from waiting on projects that take longer to complete but are not required for further dependencies.Issues
New Settings
postponeProjectInBuildOrderis a new project setting, which will (if set to true) cause the project to be postponed until the last build job when possible. If set on test projects, then all tests can be deferred until all builds have succeeded.Related to AB#539394