Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
4 changes: 2 additions & 2 deletions dev-tools/mage/crossbuild.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,8 +193,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 @@ -145,7 +145,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