feat(docker): include debug symbols in maxperf images (#22003)

Co-authored-by: Amp <amp@ampcode.com>
This commit is contained in:
Georgios Konstantopoulos
2026-02-11 19:34:41 -05:00
committed by GitHub
parent 09cd105671
commit 8bedaaee71
2 changed files with 6 additions and 2 deletions

View File

@@ -307,6 +307,11 @@ inherits = "release"
lto = "fat"
codegen-units = 1
[profile.maxperf-symbols]
inherits = "maxperf"
debug = "full"
strip = "none"
[profile.reproducible]
inherits = "release"
panic = "abort"

View File

@@ -9,7 +9,7 @@ variable "TAG" {
}
variable "BUILD_PROFILE" {
default = "maxperf"
default = "maxperf-symbols"
}
variable "FEATURES" {
@@ -137,4 +137,3 @@ target "kurtosis" {
tags = ["ghcr.io/paradigmxyz/reth:kurtosis-ci"]
output = ["type=docker,dest=${HIVE_OUTPUT_DIR}/reth_image.tar"]
}