Hello,
I am new for pipelines so excuse me if the question is obvious
In my build I have two steps:
1. Install VTK library. This is a long-time step but it needs to be run ~once a year
2. make myVTKapp. This is a quick step needs to be run several times a day (per each commit into the repo), but it is requires pre-installed VTK library
So how to do this with the pipeline without re-installing VTK each time?
Regards,
Sergey
Welcome to the Community!
This is going to depend on things about your environment. The short version is that you really shouldn't do this as your build pipeline will work best when all of the steps can be run on every single build for consistency sake.
However, if you need to have the "Install VTK Library" step run but not as often, you are going to need to provide the agent machines the build will be performed on using:
You will setup the Install VTK Library to execute against the agent infrastructure you provide. Then you setup another build pipeline that runs just the make myVTKApp and is only executed by the agents that you have setup with Runners.
I hope that helps!
-Jimmy
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.