Skip to content

Commit

Permalink
Merge branch 'main' into DIVE-299-Implementation-of-Prometheus-to-the…
Browse files Browse the repository at this point in the history
…-polkadot
  • Loading branch information
shreyasbhat0 authored Nov 21, 2023
2 parents 079ae59 + c08387e commit 06d39f0
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 3 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/smoke.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: smoke-test
on:
workflow_dispatch:

jobs:
smoke-test:
name: smoke test on all parachains
runs-on: "ubuntu-latest"

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Installing Kurtosis CLI if not found in cache
run: |
if [ ! -f "/usr/bin/kurtosis" ]; then
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
which kurtosis
fi
- name: Cache Kurtosis CLI
uses: actions/cache@v2
with:
path: |
/usr/bin/kurtosis
key: kurtosis-${{ runner.os }}
restore-keys: |
kurtosis-
- name: Starting the Kurtosis engine
run: kurtosis engine start

# - name: Run parachain
# run: |
# kurtosis run . --args-file ./local.json --enclave polkadot
6 changes: 3 additions & 3 deletions local.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"chain-type": "local",
"chain-type": "mainnet",
"relaychain": {
"name": "polkadot",
"name": "kusama",
"nodes": [
{
"name": "alice",
Expand All @@ -17,7 +17,7 @@
},

"para": {
"bifrost": {
"acala": {
"nodes": [
{
"name": "alice",
Expand Down

0 comments on commit 06d39f0

Please sign in to comment.