Skip to content

Commit 76a5474

Browse files
authored
build: add support for ubuntu 23.10 (mantic minotaur) (#28728)
1 parent 09e0208 commit 76a5474

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

build/ci.go

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -123,12 +123,13 @@ var (
123123
// wily, yakkety, zesty, artful, cosmic, disco, eoan, groovy, hirsuite, impish,
124124
// kinetic
125125
debDistroGoBoots = map[string]string{
126-
"trusty": "golang-1.11", // EOL: 04/2024
127-
"xenial": "golang-go", // EOL: 04/2026
128-
"bionic": "golang-go", // EOL: 04/2028
129-
"focal": "golang-go", // EOL: 04/2030
130-
"jammy": "golang-go", // EOL: 04/2032
131-
"lunar": "golang-go", // EOL: 01/2024
126+
"trusty": "golang-1.11", // 14.04, EOL: 04/2024
127+
"xenial": "golang-go", // 16.04, EOL: 04/2026
128+
"bionic": "golang-go", // 18.04, EOL: 04/2028
129+
"focal": "golang-go", // 20.04, EOL: 04/2030
130+
"jammy": "golang-go", // 22.04, EOL: 04/2032
131+
"lunar": "golang-go", // 23.04, EOL: 01/2024
132+
"mantic": "golang-go", // 23.10, EOL: 07/2024
132133
}
133134

134135
debGoBootPaths = map[string]string{
@@ -285,7 +286,7 @@ func doTest(cmdline []string) {
285286
coverage = flag.Bool("coverage", false, "Whether to record code coverage")
286287
verbose = flag.Bool("v", false, "Whether to log verbosely")
287288
race = flag.Bool("race", false, "Execute the race detector")
288-
short = flag.Bool("short", false, "Pass the 'short'-flag to go test")
289+
short = flag.Bool("short", false, "Pass the 'short'-flag to go test")
289290
cachedir = flag.String("cachedir", "./build/cache", "directory for caching downloads")
290291
)
291292
flag.CommandLine.Parse(cmdline)

0 commit comments

Comments
 (0)