-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
copied from https://github.com/0xPolygon/kurtosis-cdk
- Loading branch information
1 parent
aeb93f6
commit 18d3dc0
Showing
1 changed file
with
33 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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
--- | ||
name: kurtosis-cdk-setup | ||
description: Install tools to deploy the CDK stack with Kurtosis | ||
|
||
inputs: | ||
kurtosis-version: | ||
description: The version of kurtosis | ||
required: false | ||
default: '0.90.1' # https://github.com/kurtosis-tech/kurtosis/releases | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Install kurtosis | ||
shell: bash | ||
run: | | ||
echo "deb [trusted=yes] https://apt.fury.io/kurtosis-tech/ /" | sudo tee /etc/apt/sources.list.d/kurtosis.list | ||
sudo apt update | ||
sudo apt install kurtosis-cli=${{ inputs.kurtosis-version }} | ||
kurtosis version | ||
- name: Disable kurtosis analytics | ||
shell: bash | ||
run: kurtosis analytics disable | ||
|
||
- name: Install yq | ||
shell: bash | ||
run: | | ||
pip3 install yq | ||
yq --version | ||
- name: Install foundry | ||
uses: foundry-rs/foundry-toolchain@v1 |