Skip to content

Commit 3ff73d4

Browse files
authored
build: reenable building arm64 concurrently (ethereum#30626)
1 parent 9891f02 commit 3ff73d4

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

build/ci.go

+1-7
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ var (
125125
"focal", // 20.04, EOL: 04/2030
126126
"jammy", // 22.04, EOL: 04/2032
127127
"noble", // 24.04, EOL: 04/2034
128-
"oracular", // 24.10, EOL: 07/2025
128+
"oracular", // 24.10, EOL: 07/2025
129129
}
130130

131131
// This is where the tests should be unpacked.
@@ -205,12 +205,6 @@ func doInstall(cmdline []string) {
205205
// Configure the build.
206206
gobuild := tc.Go("build", buildFlags(env, *staticlink, buildTags)...)
207207

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-
}
214208
// We use -trimpath to avoid leaking local paths into the built executables.
215209
gobuild.Args = append(gobuild.Args, "-trimpath")
216210

0 commit comments

Comments
 (0)