Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Incremental Builds (POC) #1304

Draft
wants to merge 136 commits into
base: main
Choose a base branch
from
Draft

Incremental Builds (POC) #1304

wants to merge 136 commits into from

Conversation

freddydk
Copy link
Contributor

@freddydk freddydk commented Nov 12, 2024

Support incremental builds

TODO

  • Add release notes
  • Add documentation
  • Add settings docs
  • Add CI tests
  • Add end 2 end tests
  • Fix existing CI tests

Use git diff instead of API

In v6.1 and earlier versions, we use the GitHub API to determine last known good build and determine modified files in the Pull Request. It is however possible to have done modifications to the main branch after the last known good build - the changes will not be included in the PR and this the PR builds will only include the modified files in the PR together with the last known good build - potentially missing files.
This version locates the SHA, which was used to build the last known good build and uses git diff to determine all changes from that build including the changes in the PR to build what's needed.
git diff also supports many more files than the API, is faster and it doesn't count as API calls against the GitHub limit.

Add concurrency protection in CI/CD

Cancel existing CI/CD workflows running on the same branch on new push'es

Remove warnings that tests doesn't exist if doNotBuildTests is true

No reason to warn about missing test apps if you don't want to build them anyway

Remove warnings and error when locating previous builds

Getting rid of warnings like this:
{224ABFB5-16B3-496B-B3F7-F33F474185F0}
due to DownloadProjectDependencies downloads artifacts double

and errors like:
{1C5434BC-A199-444C-AAD7-CA1362EA7D61}
if there wasn't a successful build in the repo.

Check whether a package has been delivered to GitHubPackages or NuGet before delivering

If the package already exists in the current version it has already been delivered (might be from an earlier build)

@freddydk freddydk changed the title Partial Builds (POC) Incremental Builds (POC) Nov 14, 2024
Actions/AL-Go-Helper.ps1 Fixed Show fixed Hide fixed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant