-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cache docker images to avoid rate limiting from initial kurtosis images
- Loading branch information
Showing
2 changed files
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,10 @@ on: | |
type: string | ||
description: "The kurtosis network config to use (default: kurtosis-config/default.yaml)." | ||
default: "kurtosis-config/default.yaml" | ||
kurtosis_version: | ||
type: string | ||
description: "The latest version of the kurtosis cli (used as caching key)." | ||
default: "" | ||
kurtosis_branch: | ||
type: string | ||
description: "The branch name for the kurtosis ethereum package to use (default: )." | ||
|
@@ -74,6 +78,10 @@ jobs: | |
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
- name: Cache Docker images. | ||
uses: ScribeMD/[email protected] | ||
with: | ||
key: docker-${{ runner.os }}-${{ inputs.kurtosis_version }} | ||
- name: "Install shell dependencies" | ||
shell: bash | ||
run: | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters