gha/chunks: export per-runner apt/ghcr/ccache env from runner registry#471
Merged
Conversation
Add a step to the per-chunk artifacts job that looks up the current runner in github-runners.jq (matching the host's first label against the runner name with its instance suffix stripped) and exports the runner's caches to the build environment: apt_proxy -> APT_PROXY_ADDR oci_cache -> GHCR_MIRROR_ADDRESS redis_cache -> CCACHE_REMOTE_STORAGE Values are also echoed to the log for debugging. 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
Adds a step to the per-chunk artifacts job that looks up the current runner in
github-runners.jqand exports its caches into the build environment for later use bycompile.sh.Matching: the host's first dot-label is compared against
runner.namewith its instance suffix (-NN) stripped (e.g.ampere-1-01→ampere-1, matches hostampere-1orampere-1.domain).Exported variables:
apt_proxyAPT_PROXY_ADDRoci_cacheGHCR_MIRROR_ADDRESSredis_cacheCCACHE_REMOTE_STORAGEValues are also echoed to the log for debugging. Hosts with empty/missing fields export blank values without error.