From 3430c752315a06a98dce2cd24e4c65021107e2f9 Mon Sep 17 00:00:00 2001 From: bizk Date: Fri, 22 Sep 2023 18:39:06 -0300 Subject: [PATCH] fixed script execution --- .github/workflows/rosetta-cli-test.yaml | 2 +- scripts/rosetta-cli-test.sh | 4 ---- 2 files changed, 1 insertion(+), 5 deletions(-) delete mode 100755 scripts/rosetta-cli-test.sh diff --git a/.github/workflows/rosetta-cli-test.yaml b/.github/workflows/rosetta-cli-test.yaml index 45d41f8..3ca0849 100644 --- a/.github/workflows/rosetta-cli-test.yaml +++ b/.github/workflows/rosetta-cli-test.yaml @@ -24,7 +24,7 @@ jobs: repository: cosmos/cosmos-sdk ref: main - name: set up simapp - run: make build && export SIMD_BIN=./build/simd + run: make build && export SIMD_BIN=./build/simd && make init-simapp - name: Run simapp run: ./build/simd start & - name: Wait for simd to boot up for 5 mins and produce blocks diff --git a/scripts/rosetta-cli-test.sh b/scripts/rosetta-cli-test.sh deleted file mode 100755 index 859f224..0000000 --- a/scripts/rosetta-cli-test.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -export PATH=${PATH}:`go env GOPATH`/bin -go install github.com/coinbase/rosetta-cli@v0.10.0 -rosetta-cli check:data --in-memory-mode --configuration-file ./tests/config/rosetta-cli.json \ No newline at end of file