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 129 commits into
base: main
Choose a base branch
from
Draft

Incremental Builds (POC) #1304

wants to merge 129 commits into from

Conversation

freddydk
Copy link
Contributor

@freddydk freddydk commented Nov 12, 2024

Support incremental builds

Proof Of Concept

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 and doesn't count as API calls.

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.

@freddydk freddydk changed the title Partial Builds (POC) Incremental Builds (POC) Nov 14, 2024
@@ -2319,6 +2314,7 @@
try {
Invoke-Command $Command -ArgumentList $argumentList
if ($LASTEXITCODE -ne 0) {
$host.SetShouldExit(0);

Check notice

Code scanning / PSScriptAnalyzer

Line has trailing whitespace Note

Line has trailing whitespace
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