Skip to content

Commit f0df61c

Browse files
Vitexusclaude
andcommitted
fix: pin per-distro Docker builds to built-in node
Build #179 failed mid-pipeline with: failed to connect to the docker API at unix:///var/run/docker.sock: ... no such file or directory because the unlabeled node() for the per-distro branches landed on a Kubernetes pod (label 'jenkins-agent') that has no Docker socket. Checked every agent in the pool: the registered 'local_docker' Docker Cloud has zero templates (dead config, can never provide an agent); fallgold has no Docker at all; tulameen has Docker but is arm64 (wrong arch for these amd64 build images). Only the built-in node has a working amd64 Docker daemon, so pin the per-distro stages there too — consistent with the Aptly-publish stage, which was already pinned. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent de77d0f commit f0df61c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

debian/Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ distributions.each { distro ->
4747
def artifacts = []
4848
def buildVer = ''
4949

50-
node {
50+
node('built-in') {
5151
ansiColor('xterm') {
5252
stage('Checkout ' + distroName) {
5353
sh 'sudo chown -R jenkins:jenkins . 2>/dev/null || true'

0 commit comments

Comments
 (0)