@@ -123,12 +123,13 @@ var (
123
123
// wily, yakkety, zesty, artful, cosmic, disco, eoan, groovy, hirsuite, impish,
124
124
// kinetic
125
125
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
132
133
}
133
134
134
135
debGoBootPaths = map [string ]string {
@@ -285,7 +286,7 @@ func doTest(cmdline []string) {
285
286
coverage = flag .Bool ("coverage" , false , "Whether to record code coverage" )
286
287
verbose = flag .Bool ("v" , false , "Whether to log verbosely" )
287
288
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" )
289
290
cachedir = flag .String ("cachedir" , "./build/cache" , "directory for caching downloads" )
290
291
)
291
292
flag .CommandLine .Parse (cmdline )
0 commit comments