Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .ci/packer_cache.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ docker.elastic.co/beats-dev/golang-crossbuild:${GO_VERSION}-darwin
docker.elastic.co/beats-dev/golang-crossbuild:${GO_VERSION}-main
docker.elastic.co/beats-dev/golang-crossbuild:${GO_VERSION}-main-debian7
docker.elastic.co/beats-dev/golang-crossbuild:${GO_VERSION}-main-debian8
docker.elastic.co/beats-dev/golang-crossbuild:${GO_VERSION}-main-debian9
Comment thread
v1v marked this conversation as resolved.
Outdated
docker.elastic.co/beats-dev/golang-crossbuild:${GO_VERSION}-mips
docker.elastic.co/beats-dev/golang-crossbuild:${GO_VERSION}-ppc
docker.elastic.co/beats-dev/golang-crossbuild:${GO_VERSION}-s390x
Expand Down
4 changes: 2 additions & 2 deletions dev-tools/mage/crossbuild.go
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ func crossBuildImage(platform string) (string, error) {
tagSuffix = "s390x"
case strings.HasPrefix(platform, "linux"):
// Use an older version of libc to gain greater OS compatibility.
// Debian 7 uses glibc 2.13.
tagSuffix = "main-debian7"
// Debian 8 uses glibc 2.19.
tagSuffix = "main-debian8"
Comment thread
v1v marked this conversation as resolved.
}

goVersion, err := GoVersion()
Expand Down
2 changes: 1 addition & 1 deletion journalbeat/magefile.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ func selectImage(platform string) (string, error) {
case platform == "linux/s390x":
tagSuffix = "s390x"
case strings.HasPrefix(platform, "linux"):
tagSuffix = "main-debian8"
tagSuffix = "main-debian9"
}

goVersion, err := devtools.GoVersion()
Expand Down