Skip to content

Commit 5eac56f

Browse files
authored
fix scheduled workflow (#301)
1 parent bf1ba95 commit 5eac56f

3 files changed

Lines changed: 4 additions & 8 deletions

File tree

.github/workflows/scheduled.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ jobs:
169169
170170
CONFIGS+=$(echo "$(yq -r -o=json ".[${LINE}]" "$CONFIG_FILE" | jq --argjson plat "$platformsOutput" --arg commit "$COMMIT_HASH_FULL" --arg patch "$SOURCE_PATCH" '. + $plat + {source_commit: $commit, source_patch: $patch}'),")
171171
fi
172-
done < <(yq -r 'to_entries | map_values({"value":.value, "index":.key}) | .[] | [.index, .value.source.repository, .value.source.ref, .value.source.patch, .value.target.repository, .value.target.tag] | @tsv' "$CONFIG_FILE")
172+
done < <(yq -r 'to_entries | map_values({"value":.value, "index":.key}) | .[] | [.index, .value.source.repository, .value.source.ref, .value.source.patch // "", .value.target.repository, .value.target.tag] | @tsv' "$CONFIG_FILE")
173173
174174
# Remove trailing commas and close JSON arrays
175175
CONFIGS="${CONFIGS%,}]"

branches.yaml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,6 @@ geth:
4040
jwasinger/go-ethereum:
4141
- bal-execution
4242

43-
custom_configs:
44-
- name: "bad-iszero"
45-
source_patch: "geth/bad-iszero.patch"
46-
ref: "master"
47-
tag: "master-bad-iszero"
48-
4943
reth:
5044
branches:
5145
- main

generate_config.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@
3636
'eth-das-guardian': 'probe-lab/eth-das-guardian',
3737
'syncoor': 'ethpandaops/syncoor',
3838
'zeam': 'blockblaz/zeam',
39-
'ream': 'ReamLabs/ream'
39+
'ream': 'ReamLabs/ream',
40+
'meth': 'ethereum/go-ethereum',
41+
'nevermind': 'nethermindeth/nethermind',
4042
# Add more defaults as needed
4143
}
4244

0 commit comments

Comments
 (0)