6 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
70
views
How to properly cache Nuget files across Pipeline stages in ADO
I'm trying to cache all the Nuget packages for my .NET Solution in the first stage of my job, and then restore that cache in subsequent stages. I have had a lot of trouble finding reliable info on ...
-1
votes
1
answer
2k
views
Cache .NET 6 in Azure Devops
I'm facing an issue where the pipeline is unable to retrieve the .NET SDK from the cache but instead downloads it on every build.
I'm currently using a Microsoft-hosted agent in Azure DevOps.
- task: ...
0
votes
1
answer
2k
views
Bitbucket pipelines: How to find the directories/paths to cache apt-get installed packages?
I need help caching packages in my bitbucket pipeline that were installed via apt-get.
For non-apt-get installed packages you can find the path where packages are installed online. However, I'm not ...
2
votes
0
answers
1k
views
How to configure caching for custom base image for Bitbucket Pipelines
I've a Bitbucket Pipeline that is using an custom docker image as a base. Pulling it from the ECR. Also, I'm using this image to build dockerized Go apps in the first step with make commands. I want ...
0
votes
1
answer
1k
views
How to use this cache for python requirements caching ? Will this cachetask works if we use Hosted Agent for build
How to use this cache for python requirements caching ?
Will this cache task works if we use Hosted Agent for build
7
votes
2
answers
7k
views
How do I make Azure DevOps's Pipeline Cache store its result even if a step fail (like tests)?
Background: Pipeline caching allows one to store a folder and re-use it on the next build, given that some keys, branches and whatnot matches. Useful for node_modules, nuget packages and Git LFS, but ...