File tree 1 file changed +1
-7
lines changed
1 file changed +1
-7
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ var (
125
125
"focal" , // 20.04, EOL: 04/2030
126
126
"jammy" , // 22.04, EOL: 04/2032
127
127
"noble" , // 24.04, EOL: 04/2034
128
- "oracular" , // 24.10, EOL: 07/2025
128
+ "oracular" , // 24.10, EOL: 07/2025
129
129
}
130
130
131
131
// This is where the tests should be unpacked.
@@ -205,12 +205,6 @@ func doInstall(cmdline []string) {
205
205
// Configure the build.
206
206
gobuild := tc .Go ("build" , buildFlags (env , * staticlink , buildTags )... )
207
207
208
- // arm64 CI builders are memory-constrained and can't handle concurrent builds,
209
- // better disable it. This check isn't the best, it should probably
210
- // check for something in env instead.
211
- if env .CI && runtime .GOARCH == "arm64" {
212
- gobuild .Args = append (gobuild .Args , "-p" , "1" )
213
- }
214
208
// We use -trimpath to avoid leaking local paths into the built executables.
215
209
gobuild .Args = append (gobuild .Args , "-trimpath" )
216
210
You can’t perform that action at this time.
0 commit comments