From 577db2edf7cd07729995a79978b8d1ca2f2b3743 Mon Sep 17 00:00:00 2001 From: Zachinquarantine Date: Tue, 27 Dec 2022 02:52:29 -0500 Subject: [PATCH] build: add support for Ubuntu 22.10 (Kinetic Kudu) (#26379) Adds uploads to Kinetic in Launchpad, and removes the upload for 21.10 impish (not supported since July) --- build/ci.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build/ci.go b/build/ci.go index 572519b96..2c2af0899 100644 --- a/build/ci.go +++ b/build/ci.go @@ -129,15 +129,15 @@ var ( // Distros for which packages are created. // Note: vivid is unsupported because there is no golang-1.6 package for it. // Note: the following Ubuntu releases have been officially deprecated on Launchpad: - // wily, yakkety, zesty, artful, cosmic, disco, eoan, groovy, hirsuite + // wily, yakkety, zesty, artful, cosmic, disco, eoan, groovy, hirsuite, impish debDistroGoBoots = map[string]string{ "trusty": "golang-1.11", // EOL: 04/2024 "xenial": "golang-go", // EOL: 04/2026 "bionic": "golang-go", // EOL: 04/2028 "focal": "golang-go", // EOL: 04/2030 - "impish": "golang-go", // EOL: 07/2022 "jammy": "golang-go", // EOL: 04/2032 - //"kinetic": "golang-go", // EOL: 07/2023 + "kinetic": "golang-go", // EOL: 07/2023 + //"lunar": "golang-go", // EOL: 01/2024 } debGoBootPaths = map[string]string{