Skip to content

Commit b6e8963

Browse files
fix (jenkins): broken arm build
As of today, arm had issue on go 1.23. The issue is known and not fixed yet: golang/go#68976 Considering we can't downgrade to go 1.22 because of the missing Partition Cookie feature, we have to disable arm for now
1 parent c4dc20b commit b6e8963

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Jenkinsfile

+4-3
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,13 @@ pipeline {
8686
sh "docker build --no-cache -t machines/filestash:latest-amd64 ./docker/"
8787
sh "docker push machines/filestash:latest-amd64"
8888

89-
// arm
90-
sh "docker buildx build --platform linux/arm64 -t machines/filestash:latest-arm64 ./docker/"
89+
// // arm
90+
// sh "docker buildx build --platform linux/arm64 -t machines/filestash:latest-arm64 ./docker/"
9191

9292
// create final image
9393
sh "docker manifest rm machines/filestash:latest || true"
94-
sh "docker manifest create machines/filestash:latest --amend machines/filestash:latest-amd64 --amend machines/filestash:latest-arm64v8"
94+
// sh "docker manifest create machines/filestash:latest --amend machines/filestash:latest-amd64 --amend machines/filestash:latest-arm64v8"
95+
sh "docker manifest create machines/filestash:latest --amend machines/filestash:latest-amd64"
9596
sh "docker manifest push machines/filestash:latest"
9697
}
9798
}

0 commit comments

Comments
 (0)