hello everyone i have pulumi iac and we setup azur...
# azure
h
hello everyone i have pulumi iac and we setup azure pipeline for them with Pulumi Task Extension on our environment. the issue is every time pipeline runs pulumi try to build python packages and that take too much time of us. dose anyone face this issue and have any idea?
f
Hi! Azure pipelines, by default, re-build everything from scratch on each run. This is great for reproducibility, but not great for speed. You can tell it not to delete the working directory before a run with the "clean" setting - what do you have that set to right now? Does setting it to "false" help?
Getting to this setting can be a pain. I have to click the pipeline; then "Edit", then the three dots in the upper right; then "Triggers", then on the screen in the screenshot click "YAML" and then "Get sources"
h
Hi ehtan. thank you for being so helpful, I have a clean setting set to "true", I will change that and try it 😍