In azure build pipeline, under Get Sources
suppose clean is set to true
, then you need to choose one of the following:
Sources
Sources and output directory
Sources directory
All build directories
Following is the difference between Sources
and Sources directory
. Can you explain this to me with practical example?
Sources: The build pipeline performs an undo of any changes in $(Build.SourcesDirectory). More specifically, the following Git commands are executed prior to fetching the source.
git clean -ffdx
git reset --hard HEAD
Sources directory: Deletes and recreates $(Build.SourcesDirectory). This results in initializing a new, local Git repository for every build.
For the Sources, just like the ducoment said:
Important:
an undo of any changes
mentioned here refers to changes that are NOT under source control.We could get this from the git command
git clean -ffdx
:git-clean:
So, it will clean any change untracked by source control in the source.
For example, I have make some changes in the
$(Build.SourcesDirectory)
in my build server machine directly (Not the repo). Theclean:source
option will revert this change.After build the pipeline, I modified one test txt file in the sources directory like:
c:\agent_work\1\s
:I change the
1122
to112233
in the directory directly. Next, I set theclean:source
, when we execute the pipeline, azure devops will remove above modification, it will be revert to1122
.For the Sources directory, just like the document explained, azure devops will delete and recreates
$(Build.SourcesDirectory)
. It will delete the folderc:\agent_work\1\s
, then create a new one, and checkout the source in the new created folder.Updated with more detailed example:
To talk about the clean source, we need to know this option is used for self-hosted agents not the Microsoft-hosted agent, to clean the source directory
$(Build.SourcesDirectory)
in the self-hosted agent. That because you'll get a new agent every time when you use Microsoft-hosted agent. Check the note in the official documents.Now, let us compare their differences between
Sources
andSources directory
.When we create a new pipeline with self-hosted agents, Azure devops will checkout the source from repo to the self-hosted agent:
So, the build source from repo will be save to folder
$(Build.SourcesDirectory)
in our self-hosted agent:Then, we open that folder, and add a new test file in this folder manually (Not add it from repo), like
Test.txt
.If we select the
clean:source
, the azure devops will remove the fileTest.txt
we added manually but keep other files:Next, we test the
clean:Sources directory
option. We also add the same test file in the folder$(Build.SourcesDirectory)
, then select the option Sources Directory:So, you should clearly know the difference between the
Sources
andSources directory
, one only clears the extra files we added, and the other is to clear all the files. When our repo is very large, we don't want to spend time rechecking out all the repo, we can choose source.This is the simplest and most direct example. Of course, this option is not only useful for files, but also for any file modification.