From 45f5b7b594509c0767488b25134d6c045f70c82e Mon Sep 17 00:00:00 2001 From: "Brian R. Jackson" Date: Tue, 26 May 2026 18:25:30 -0400 Subject: [PATCH] fix(build-cds-containers): drop buildkitd-config on ubuntu-latest PR #48 added 'with: buildkitd-config: /etc/buildkit/buildkitd.toml' to the Set up Docker Buildx step in this workflow. That config file is pre-populated on nv-gha-runners but does not exist on GitHub-hosted runners. The build-and-push-images job (and others in this workflow) run on 'ubuntu-latest', so post-merge to main every matrix variant failed with: ##[error]config file /etc/buildkit/buildkitd.toml not found The original rationale for the buildkitd-config setting does not apply to GitHub-hosted runners: those runners pull from Docker Hub with the runner's pre-configured authentication and do not hit the anonymous rate limit that motivated the change in the first place. This revert is scoped only to this workflow. The change in .github/actions/docker-build/action.yml (the composite action consumed by nv-gha-runners-based consumers) is correct and stays in place. Tracks: nvbug 6225636. Co-Authored-By: Claude Opus 4.7 Signed-off-by: Brian R. Jackson --- .github/workflows/build-cds-containers.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/build-cds-containers.yml b/.github/workflows/build-cds-containers.yml index 900b1a8..08bfeac 100644 --- a/.github/workflows/build-cds-containers.yml +++ b/.github/workflows/build-cds-containers.yml @@ -81,8 +81,6 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - with: - buildkitd-config: /etc/buildkit/buildkitd.toml - name: Log in to GitHub Container Registry if: github.ref == 'refs/heads/main'