Skip to content

Commit a8fca7b

Browse files
committed
yeet rust min stack
1 parent 787cd8a commit a8fca7b

2 files changed

Lines changed: 1 addition & 5 deletions

File tree

.github/workflows/build-push-grandine.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ on:
1919
required: false
2020
build_args:
2121
description: Additional build arguments to pass to the docker build command
22-
default: "RUST_MIN_STACK=5242880"
2322
type: string
2423
required: false
2524

generate_config.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@
4040

4141
# Build argument defaults for special cases
4242
BUILD_ARGS = {
43-
'hangleang/grandine/peerdas-devnet-7': 'RUST_MIN_STACK=5242880',
4443
'mev-rs/main-minimal': 'FEATURES=minimal-preset',
4544
'reth-rbuilder/develop': 'RBUILDER_BIN=reth-rbuilder'
4645
}
@@ -245,9 +244,7 @@ def get_build_args(client_name, source_repo, branch, target_tag):
245244
return BUILD_ARGS[key_client_tag]
246245

247246
# Special cases
248-
if 'hangleang/grandine' in source_repo:
249-
return 'RUST_MIN_STACK=5242880'
250-
elif client_name == 'mev-rs' and 'minimal' in target_tag:
247+
if client_name == 'mev-rs' and 'minimal' in target_tag:
251248
return 'FEATURES=minimal-preset'
252249
elif client_name == 'reth-rbuilder':
253250
return 'RBUILDER_BIN=reth-rbuilder'

0 commit comments

Comments
 (0)