Hi All!
Trying to speed up a build significantly… say the repo has the following structure
my-project
├── README.md
├── app //app code
├── db //could be ORM or just migrations
└── infra // IaC
Is there a way to have Drone, say, skip the app build step if there aren’t any changes in that directory (app takes 11+ minutes to build), skip the db build step if there’s nothing new there, or skip the readme if that’s the only change?
My build is written using a Jsonnet file, so that opens up a few possibilities I think.