gha/chunks: export per-runner caches in images job#472
Merged
Conversation
Apply the same runner-registry lookup to the per-chunk images template, exporting the runner's caches for the image build: apt_proxy -> APT_PROXY_ADDR oci_cache -> GHCR_MIRROR_ADDRESS redis_cache -> CCACHE_REMOTE_STORAGE Signed-off-by: Igor Pecovnik <igor@armbian.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Applies the same runner-registry lookup (added for the artifacts job in #471) to the per-chunk images template. Before the image build, it looks up the current runner in
github-runners.jqand exports its caches into the build environment.Matching: the host's first dot-label is compared against
runner.namewith its instance suffix (-NN) stripped (e.g.ampere-1-01→ampere-1).Exported variables:
apt_proxyAPT_PROXY_ADDRoci_cacheGHCR_MIRROR_ADDRESSredis_cacheCCACHE_REMOTE_STORAGEValues are echoed to the log for debugging. Hosts with empty/missing fields export blank values without error.
Companion to #471 (artifacts job).