Skip to content

Commit

Permalink
ci: add support for GitPod (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
h4ck3rk3y authored Sep 15, 2023
1 parent ebff2d0 commit 44b34b8
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitpod.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# this project uses workspace-full but if you only want to run Starlark
# use workspace-base instead
# can't use that here as this needs Go and TS
FROM gitpod/workspace-full
27 changes: 27 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
image:
file: .gitpod.Dockerfile

tasks:
- name: Setup Kurtosis
command: |
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
kurtosis run github.com/fake-package/fake-package-purely-for-analytics || kurtosis clean -a
code README.md
source <(kurtosis completion bash)
echo "source <(kurtosis completion bash)" >> ~/.bashrc
clear
ports:
- name: Kurtosis Engine Grpc Listen
port: 9710
onOpen: ignore
- name: Kurtosis Engine Grpc Proxy Listen
port: 9710
onOpen: ignore


vscode:
extensions:
- Kurtosis.kurtosis-extension

0 comments on commit 44b34b8

Please sign in to comment.