Back to News
Advertisement
Advertisement

⚑ Community Insights

Discussion Sentiment

100% Positive

Analyzed from 114 words in the discussion.

Trending Topics

#more#using#cache#example#whatever#similar#complex#dependency#installation#step

Discussion (5 Comments)Read Original on HackerNews

cyberclimbβ€’about 2 hours ago
Is there any way to cache the dependency installation step on github actions for example?

I supposed you could cache whatever directory it installs to? Would be great to see an example

samuellβ€’about 7 hours ago
Optimizing for local-first checking is 100% the way to go, and should be used much more widely I think.

I have done a similar thing using simple makefiles though, collecting more complex chains of tasks into a "meta rule" in Make and just calling that from whatever CI config we're using.

MeltedVoltageβ€’about 3 hours ago
I have also slowly transitioned into something similar - using justfiles instead of make. I have `just prerequisites`, `just lint`, `just build` in all of my projects. pixie's lockfile might be the most interesting part.
nigels-comβ€’about 1 hour ago
Went all in on just in a previous role. All the Jenksfile shrunk to manageable complexity, except the not just ones.
jiehongβ€’about 2 hours ago
Dagger seems more fit, but more complex for sure.