Skip to content

build(deps): bump amannn/action-semantic-pull-request from 5.2.0 to 5.3.0 #96

build(deps): bump amannn/action-semantic-pull-request from 5.2.0 to 5.3.0

build(deps): bump amannn/action-semantic-pull-request from 5.2.0 to 5.3.0 #96

name: rosetta-cli-test
on:
push:
branches:
- main
- release/**
pull_request:
merge_group:
permissions:
contents: read
jobs:
rosetta-cli-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: '^1.21.1'
- name: Get cosmos-sdk repo
uses: actions/checkout@v4
with:
repository: cosmos/cosmos-sdk
ref: main
path: './cosmos-sdk'
- name: set up simapp
run:
cd cosmos-sdk &&
make build &&
export SIMD_BIN=./build/simd &&
make init-simapp
- name: Run simapp
run: ./cosmos-sdk/build/simd start &
- name: Wait for simd to boot up for 2 mins and produce blocks
run: sleep 120s
shell: bash
- name: Check blockchain status
run: curl localhost:26657/status
- name: Build Rosetta
run: go mod tidy && make rosetta && make plugin
- name: Run Rosetta service
run: ./rosetta --blockchain "cosmos" --network "cosmos" --tendermint "tcp://localhost:26657" --addr "localhost:8081" --grpc "localhost:9090" &
- name: Wait for rosetta boot up for 30 secs
run: sleep 30s
shell: bash
- name: Check rosetta status
run: curl localhost:8081/block
- name: Generate wallets and transactions
run:
export SIMD_BIN=./cosmos-sdk/build/simd &&
chmod +x ./tests/rosetta-cli/data.sh &&
./tests/rosetta-cli/data.sh
shell: bash
- name: Test rosetta through Rosetta-cli
run:
make rosetta-cli
shell: bash