chore: reduce number of nightly builds (#21446)

This commit is contained in:
DaniPopes
2026-01-26 21:06:09 +01:00
committed by GitHub
parent 1ccc174e7b
commit c41c8e6cae

View File

@@ -39,7 +39,7 @@ group "default" {
}
group "nightly" {
targets = ["ethereum", "ethereum-profiling", "ethereum-edge-profiling", "optimism", "optimism-profiling", "optimism-edge-profiling"]
targets = ["ethereum", "ethereum-profiling", "ethereum-edge-profiling", "optimism", "optimism-profiling"]
}
// Base target with shared configuration
@@ -54,6 +54,10 @@ target "_base" {
VERGEN_GIT_DIRTY = "${VERGEN_GIT_DIRTY}"
}
}
target "_base_profiling" {
inherits = ["_base"]
platforms = ["linux/amd64"]
}
// Ethereum (reth)
target "ethereum" {
@@ -66,7 +70,7 @@ target "ethereum" {
}
target "ethereum-profiling" {
inherits = ["_base"]
inherits = ["_base_profiling"]
args = {
BINARY = "reth"
MANIFEST_PATH = "bin/reth"
@@ -77,7 +81,7 @@ target "ethereum-profiling" {
}
target "ethereum-edge-profiling" {
inherits = ["_base"]
inherits = ["_base_profiling"]
args = {
BINARY = "reth"
MANIFEST_PATH = "bin/reth"
@@ -98,7 +102,7 @@ target "optimism" {
}
target "optimism-profiling" {
inherits = ["_base"]
inherits = ["_base_profiling"]
args = {
BINARY = "op-reth"
MANIFEST_PATH = "crates/optimism/bin"
@@ -109,7 +113,7 @@ target "optimism-profiling" {
}
target "optimism-edge-profiling" {
inherits = ["_base"]
inherits = ["_base_profiling"]
args = {
BINARY = "op-reth"
MANIFEST_PATH = "crates/optimism/bin"