How are people using joker in CI, are they just redownloading on every build?
lol yeah I am working on that exactly, in my CI there is no concept of cache so my only way at the moment is download it
on CircleCI even downloading GraalVM is blazingly fast while on my own computer it takes 10s of seconds
Iām also downloading and installing planck each time for each speculative build. Matter of seconds.
yeah I wish I was on Circle, which has cache
which one are you using?
Azure Pipelines
which was a "business" decision, cause of Microsoft
so so unlike Circle...I wish I could move to it today š
I'm amazed at how fast circle is downloading things.
I needed to force bump the clj version, and it's registering as 0s on circle.
I wonder how they do it. Just blazingly fast internet or maybe a cache somewhere?
I'm thinking they might have a HTTP caching proxy.
do you folks know a way to launch joker ,,file...
where the file lives in an npm
package?
the way I found is this:
!/usr/bin/env sh
npm_prefix=$(npm config get prefix)
package_dir="$npm_prefix/lib/node_modules/@elasticpath/continuous-delivery"
joker "$package_dir/src/cd/create_entity_definition.joke"
I will need to test it in CI though