Workflow recipe for building app with dependencies #563
-
Hi, I am interested in trying to modify the existing workflow recipes so they accept an additional arg to build additional apps or libs as dependencies. I have managed to do a port of IO_LIB, CI and TO but the latter two depend on each other and on IO_LIB to build and run. Does anyone know how this might be done or have an existing example I could use? I think it might be possible to create a json from an input string and then turn that into a matrix for use. I am totally new to writing my own workflows and haven't wrapped my head around the documentation on how this might be done yet. It would also be helpful if anyone has some ideas on how to do this or if it's even a reasonable proposal. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
The only reusable workflow that would be necessary to actually check out dependencies is the build and run, right? I think the only three changes would be to check out the additional repo, add to startup, add to build. I'm not sure how to easily handle a matrix of dependencies... although if you just wanted to handle one you could simply add conditional steps based on an additional input. |
Beta Was this translation helpful? Give feedback.
The only reusable workflow that would be necessary to actually check out dependencies is the build and run, right? I think the only three changes would be to check out the additional repo, add to startup, add to build. I'm not sure how to easily handle a matrix of dependencies... although if you just wanted to handle one you could simply add conditional steps based on an additional input.