Skip to content

Commit 7063f5e

Browse files
holimanRoberto Bayardo
authored andcommitted
build: add support for ubuntu 23.10 (mantic minotaur) (ethereum#28728)
1 parent 5ed7ac4 commit 7063f5e

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{
@@ -288,7 +289,7 @@ func doTest(cmdline []string) {
288289
coverage = flag.Bool("coverage", false, "Whether to record code coverage")
289290
verbose = flag.Bool("v", false, "Whether to log verbosely")
290291
race = flag.Bool("race", false, "Execute the race detector")
291-
short = flag.Bool("short", false, "Pass the 'short'-flag to go test")
292+
short = flag.Bool("short", false, "Pass the 'short'-flag to go test")
292293
cachedir = flag.String("cachedir", "./build/cache", "directory for caching downloads")
293294
)
294295
flag.CommandLine.Parse(cmdline)

0 commit comments

Comments
 (0)