You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/workflow-run-replay-verify-on-archive.yaml
+8-6Lines changed: 8 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -40,9 +40,17 @@ on:
40
40
type: string
41
41
description: The end version to use for the backup. If not specified, it will use the latest version.
42
42
jobs:
43
+
44
+
build-images:
45
+
uses: aptos-labs/aptos-core/.github/workflows/workflow-run-docker-rust-build.yaml@jkao97/verify-and-build-images-for-workflows # TODO: change back to main
46
+
with:
47
+
GIT_SHA: ${{ env.GIT_SHA }}
48
+
TARGET_CACHE_ID: ${{ github.ref_name }}
49
+
43
50
run-replay-verify:
44
51
runs-on: ubuntu-latest-32-core # consider moving this to a smaller machien since the compute runs on GKE
45
52
timeout-minutes: 420# 7 hours
53
+
needs: build-images
46
54
steps:
47
55
- name: Checkout code
48
56
uses: actions/checkout@v4
@@ -51,12 +59,6 @@ jobs:
51
59
# get the last 10 commits to find images that have been built
52
60
# we can optionally use the IMAGE_TAG to find the exact commit to checkout
0 commit comments