Skip to content

Commit 577db2e

Browse files
author
Zachinquarantine
authored
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)
1 parent 0180842 commit 577db2e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build/ci.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -129,15 +129,15 @@ var (
129129
// Distros for which packages are created.
130130
// Note: vivid is unsupported because there is no golang-1.6 package for it.
131131
// Note: the following Ubuntu releases have been officially deprecated on Launchpad:
132-
// wily, yakkety, zesty, artful, cosmic, disco, eoan, groovy, hirsuite
132+
// wily, yakkety, zesty, artful, cosmic, disco, eoan, groovy, hirsuite, impish
133133
debDistroGoBoots = map[string]string{
134134
"trusty": "golang-1.11", // EOL: 04/2024
135135
"xenial": "golang-go", // EOL: 04/2026
136136
"bionic": "golang-go", // EOL: 04/2028
137137
"focal": "golang-go", // EOL: 04/2030
138-
"impish": "golang-go", // EOL: 07/2022
139138
"jammy": "golang-go", // EOL: 04/2032
140-
//"kinetic": "golang-go", // EOL: 07/2023
139+
"kinetic": "golang-go", // EOL: 07/2023
140+
//"lunar": "golang-go", // EOL: 01/2024
141141
}
142142

143143
debGoBootPaths = map[string]string{

0 commit comments

Comments
 (0)