We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1cb9eb commit 174e903Copy full SHA for 174e903
1 file changed
.github/actions/build-benchmark-genesis/action.yaml
@@ -37,6 +37,19 @@ runs:
37
tar -xzf "${{ inputs.fixtures_path }}"
38
echo "Fixtures extracted successfully"
39
40
+ - name: Remove stale client Docker images
41
+ shell: bash
42
+ run: |
43
+ echo "Removing stale Hive client images to force fresh builds..."
44
+ images_to_remove=$(docker images --format '{{.Repository}}:{{.Tag}}' | grep -E '^(hive/clients/|.*/(client-go|besu|nethermind))' || true)
45
+ if [ -n "$images_to_remove" ]; then
46
+ echo "Found the following images to remove:"
47
+ echo "$images_to_remove"
48
+ echo "$images_to_remove" | xargs docker rmi -f
49
+ else
50
+ echo "No matching Hive client images found to remove."
51
+ fi
52
+
53
- name: Start Hive in dev mode
54
id: start-hive
55
uses: ./.github/actions/start-hive-dev
0 commit comments