Skip to content

Commit

Permalink
added submodule and moved cosmos-sdk to another folder inside the mai…
Browse files Browse the repository at this point in the history
…n one
  • Loading branch information
bizk committed Sep 24, 2023
1 parent a9aded1 commit 53683e5
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/rosetta-cli-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
run-simapp:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v4
with:
go-version: '^1.21.1'
Expand All @@ -23,16 +24,20 @@ jobs:
with:
repository: cosmos/cosmos-sdk
ref: main
submodules: true
- name: set up simapp
run: make build && export SIMD_BIN=./build/simd && make init-simapp
run:
cd cosmos-sdk &&
make build &&
export SIMD_BIN=./build/simd &&
make init-simapp
- name: Run simapp
run: ./build/simd start &
run: ./cosmos-sdk/build/simd start &
- name: Wait for simd to boot up for 5 mins and produce blocks
run: sleep 30s
shell: bash
- name: Check blockchain status
run: curl localhost:26657/status
- uses: actions/checkout@v4
- name: Build Rosetta
run: go mod tidy && make rosetta && make plugin
- name: Run Rosetta service
Expand Down

0 comments on commit 53683e5

Please sign in to comment.