ARM64 builds never hit GHA cache despite correct scope configuration
まだ誰も着手していません。
評価
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 初心者へのやさしさ
- 52/100
- issue の種類
- バグ
- 明瞭さ
- おおむね明確
- 活発さ
- 静か
- 技術スタック
- docker, github-actions, go
- 領域
- build-system, ci-cd, devops
調査の方向性
.github/workflows/ci.yml と docker/github-builder@v1.13.0 ワークフローから着手し、リンクされている v0.0.5 と v0.0.6 の run について、amd64 と arm64 の cache-from/cache-to の挙動を比較します。BuildKit のデバッグログを有効にするか、再利用可能なワークフローのキャッシュエントリポイントを調査して、arm64 の scope でエクスポートされたレイヤーが見つからない理由を特定します。arm64 のリリースがアーキテクチャ単位の scope でキャッシュされたレイヤーを取得し、amd64 のキャッシュを損なわないことが完了の条件です。
索引モデルが issue の本文から書いたものです。
説明
Description
ARM64 builds using docker/github-builder with GHA cache never retrieve cached layers, while AMD64 builds hit cache consistently (15+ CACHED layers). Both architectures use identical cache configuration and scopes, but only AMD64 benefits from caching.
Expected behaviour
Both ARM64 and AMD64 builds should retrieve cached layers from the GHA cache backend using their respective architecture-scoped entries. Expected: ARM64 build time ~40s (with cache), similar to AMD64.
Actual behaviour
ARM64 builds show 0 CACHED layers and take ~80s, while AMD64 builds show 15+ CACHED layers in ~39s, despite:
- Identical
cache: trueandcache-mode: maxconfiguration - Correct automatic scope assignment:
buildkit-linux-amd64vsbuildkit-linux-arm64 - Both builds happening in same workflow run with native runners
- Cache export successfully completing on ARM64 (logs show
#27 exporting to GitHub Actions Cache)
This pattern is consistent across multiple release builds.
Repository URL
https://github.com/eopo/blogger-xml-exporter
Workflow run URL
Example runs showing the issue:
- v0.0.5 release build: https://github.com/eopo/blogger-xml-exporter/actions/runs/29195568696
- v0.0.6 release build: https://github.com/eopo/blogger-xml-exporter/actions/runs/29196210866
YAML workflow
From .github/workflows/ci.yml - build job using docker/github-builder:
jobs:
build:
uses: docker/github-builder@v1.13.0
with:
output: image
push: ${{ startsWith(github.ref, 'refs/tags/') }}
platforms: ${{ startsWith(github.ref, 'refs/tags/') && 'linux/amd64,linux/arm64' || 'linux/amd64' }}
cache: true
cache-mode: max
meta-images: ghcr.io/${{ github.repository }}
registry-auths: |
{
"ghcr.io": {
"username": "github",
"password": "${{ github.token }}"
}
}
Cache Configuration Generated by docker/github-builder:
- AMD64:
--cache-from type=gha,scope=buildkit-linux-amd64 --cache-to type=gha,ignore-error=true,scope=buildkit-linux-amd64,mode=max - ARM64:
--cache-from type=gha,scope=buildkit-linux-arm64 --cache-to type=gha,ignore-error=true,scope=buildkit-linux-arm64,mode=max
Workflow logs
AMD64 Build (v0.0.5 tag release):
Total time: 39s
Cached layers: 15+
Key log lines from build output:
#1 [builder 1/7] FROM golang:1.26-alpine
#1 CACHED [builder 2/7] RUN apk add --no-cache make ...
#1 CACHED [builder 3/7] WORKDIR /build
#1 CACHED [builder 4/7] COPY Makefile .
#1 CACHED [builder 5/7] RUN make setup-css-tools
#1 CACHED [builder 6/7] COPY . .
#2 [builder 7/7] RUN make build
#3 [runtime 1/3] FROM distroless/static-debian12:nonroot
#3 CACHED [runtime 2/3] COPY --from=builder /build/bin/blogger-xml-exporter /
#3 CACHED [runtime 3/3] LABEL ...
#27 writing image ...
#27 DONE
docker buildx build command used:
--cache-from type=gha,scope=buildkit-linux-amd64 \
--cache-to type=gha,ignore-error=true,scope=buildkit-linux-amd64,mode=max
ARM64 Build (v0.0.5 tag release - same workflow run):
Total time: 80s
Cached layers: 0
Key log lines from build output:
#1 [builder 1/7] FROM golang:1.26-alpine
#1 downloading ...
#1 DONE
#2 [builder 2/7] RUN apk add --no-cache make ...
#2 DONE
#3 [builder 3/7] WORKDIR /build
#3 DONE
#4 [builder 4/7] COPY Makefile .
#4 DONE
#5 [builder 5/7] RUN make setup-css-tools
#5 DONE
[...all subsequent layers download and run, NO CACHED...]
#27 exporting to GitHub Actions Cache
#27 DONE
docker buildx build command used:
--cache-from type=gha,scope=buildkit-linux-arm64 \
--cache-to type=gha,ignore-error=true,scope=buildkit-linux-arm64,mode=max
Key Observations:
cache-fromcommand structure is identical for both platforms- AMD64 successfully retrieves all cached layers from GHA
- ARM64 with
buildkit-linux-arm64scope finds ZERO cache hits - Cache export (
#27 exporting to GitHub Actions Cache) completes successfully on ARM64 - But on subsequent builds (v0.0.6): ARM64 still shows 0 hits despite cache being exported
Pattern consistency:
- v0.0.5 tag run (29195568696): AMD64 15+ CACHED, ARM64 0 CACHED (39s vs 80s)
- v0.0.6 tag run (29196210866): AMD64 15+ CACHED, ARM64 0 CACHED (22 minutes later, same pattern)
BuildKit logs
Debug logs not currently available without enabling debug mode. However, standard build output clearly shows:
cache-from type=gha,scope=buildkit-linux-arm64is correctly configured- Cache retrieval attempt occurs (docker buildx sends the query)
- All layers proceed as uncached misses
- Cache export to
type=gha,scope=buildkit-linux-arm64,mode=maxcompletes without error
Additional info
Environment:
- GitHub Actions, docker/github-builder@v1.13.0
- Native ubuntu-24.04 runner for AMD64 builds
- Native ubuntu-24.04-arm runner for ARM64 builds
- Go 1.26 application with Alpine builder stage
- Multi-platform release builds (both architectures triggered on git tag events)
Root Cause Analysis:
GHA cache backend appears to have a platform-specific issue retrieving ARM64-scoped cache entries:
-
Scope configuration: ✅ Correct
- Both platforms receive automatically-assigned architecture-specific scopes
buildkit-linux-amd64vsbuildkit-linux-arm64
-
Cache export: ✅ Succeeds
- ARM64 logs show
#27 exporting to GitHub Actions CacheDONE - Export completes without errors
- ARM64 logs show
-
Cache retrieval: ❌ 0% hit rate
- AMD64: 15+ layers cached on first query
- ARM64: 0 layers cached, despite identical query structure
Why not use shared cache scope?
Architecture-specific binaries are incompatible. Both images use CGO_ENABLED=0 to produce static Linux binaries, which are architecture-dependent. Sharing a cache scope across architectures would cause:
- Cache hits serving wrong architecture binary
- Build failures or runtime crashes
- Data corruption
Impact:
- ARM64 release builds take ~2x longer (~80s vs ~39s AMD64)
- Only affects release tag builds (not PR/main branch), so CI/CD cost is moderate
- Not a blocking issue, but significant performance regression for multi-arch releases
Reproducibility:
This should be reproducible with:
- Any Go + Alpine project using docker/github-builder@v1.13.0
- Multi-platform build configuration (linux/amd64,linux/arm64)
- GHA cache enabled (
cache: true, cache-mode: max) - Native ubuntu-24.04 and ubuntu-24.04-arm runners
- 主要言語
- 言語のデータがありません
- スター
- 83
- フォーク
- 23
- 平均マージ
- 2日 22時間
- マージ済み PR(30日)
- 8
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
docker/github-builder のほかの issue
-
kind/enhancement status/triage
難易度 3/5 1〜2日 初心者へのやさしさ 52/100
docker/github-builder#282 ·
-
難易度 3/5 1〜2日 初心者へのやさしさ 68/100
docker/github-builder#209 ·
-
kind/enhancement
難易度 3/5 1〜2日 初心者へのやさしさ 65/100
docker/github-builder#207 · コメント 1 件 ·
-
kind/enhancement status/triage
難易度 5/5 1週間以上 初心者へのやさしさ 25/100
docker/github-builder#203 · コメント 1 件 ·
-
status/triage
難易度 4/5 3〜5日 初心者へのやさしさ 45/100
docker/github-builder#193 · コメント 2 件 ·
docker/github-builder の issue をすべて見る
似ている issue
-
難易度 2/5 1〜3時間 初心者へのやさしさ 75/100
freedomofpress/dangerzone#1562 ·
-
Mend: dependency security vulnerability status: needs triage 🕵️♀️
難易度 2/5 1〜3時間 初心者へのやさしさ 70/100
carbon-design-system/ibm-products#9907 ·
-
intake mcp-intake needs-ac needs-human-review priority:medium type:feature
難易度 2/5 1〜3時間 初心者へのやさしさ 75/100
Ikalus1988/MisakaNet#2102 · コメント 2 件 ·
-
onnx-ir re-exports ModelProto and GraphProto but not NodeProto, AttributeProto and AttributeType オープン
難易度 2/5 1〜3時間 初心者へのやさしさ 75/100
-
難易度 2/5 1〜3時間 初心者へのやさしさ 65/100
llvm/lighthouse#283 ·