How can I cache the build output for CI servers? #39
-
I've got some tests which run on Github Actions and need a modern ImageMagick (which, of course, Ubuntu and Debian don't provide) so I'm using IMEI to build ImageMagick 7, but this adds 15 minutes to my build. Is there some way I can just compile into a folder, cache that, and then move it into place for each build? |
Beta Was this translation helpful? Give feedback.
Answered by
SoftCreatR
Sep 20, 2021
Replies: 1 comment 7 replies
-
One thing that COULD work is to use |
Beta Was this translation helpful? Give feedback.
7 replies
Answer selected by
NuckChorris
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
One thing that COULD work is to use
--checkinstall
on initial build, and export the generated.deb
files, e.g. by committing them into your repo.