Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
joanestebanr committed Jul 9, 2024
1 parent aeb93f6 commit 18d3dc0
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/actions/setup-kurtosis-cdk/action.yml
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

0 comments on commit 18d3dc0

Please sign in to comment.