From 9d88cbd98cd481aff5fda0444f9b5fbc3f0e1a31 Mon Sep 17 00:00:00 2001 From: bizk Date: Fri, 22 Sep 2023 18:17:36 -0300 Subject: [PATCH] updated git workflow --- .github/workflows/rosetta-cli-test.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/rosetta-cli-test.yaml b/.github/workflows/rosetta-cli-test.yaml index 0da0863..17202cc 100644 --- a/.github/workflows/rosetta-cli-test.yaml +++ b/.github/workflows/rosetta-cli-test.yaml @@ -23,16 +23,18 @@ jobs: 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 && ./tests/rosetta-cli/data.sh + run: make build && export SIMD_BIN=./build/simd" - name: Run simapp - run: ./cosmos-sdk/build/simd start & + run: ./build/simd start & # - name: Wait for simd to boot up for 5 mins and produce blocks # run: sleep 300s # shell: bash - name: Check blockchain status run: curl localhost:26657/status + - uses: actions/setup-go@v4 + - name: Load data + run: ./tests/rosetta-cli/data.sh - name: Build Rosetta run: go mod tidy && make rosetta && make plugin - name: Run Rosetta service