build: add Ubuntu 25.10 and remove 14.04 workaround

This commit is contained in:
Charlotte 2025-12-27 20:00:18 -05:00 committed by GitHub
parent 27b3a6087e
commit 46b71b87df
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -168,8 +168,8 @@ var (
"focal", // 20.04, EOL: 04/2030
"jammy", // 22.04, EOL: 04/2032
"noble", // 24.04, EOL: 04/2034
"oracular", // 24.10, EOL: 07/2025
"plucky", // 25.04, EOL: 01/2026
"questing", // 25.10, EOL: 07/2026
}
// This is where the tests should be unpacked.
@ -248,9 +248,7 @@ func doInstall(cmdline []string) {
buildTags := []string{"urfave_cli_no_docs"}
// Enable linking the CKZG library since we can make it work with additional flags.
if env.UbuntuVersion != "trusty" {
buildTags = append(buildTags, "ckzg")
}
buildTags = append(buildTags, "ckzg")
// Configure the build.
gobuild := tc.Go("build", buildFlags(env, *staticlink, buildTags)...)