Skip to content

Commit

Permalink
removed double build command
Browse files Browse the repository at this point in the history
  • Loading branch information
bizk committed Sep 11, 2023
1 parent 0cc5db8 commit 3ff64ac
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/rosetta-cli-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,18 @@ jobs:
repository: cosmos/cosmos-sdk
ref: main
- name: set up simapp
run: make build && ls && export SIMD_BIN=./build/simd && make init-simapp && ./build/simd start &
run: make build && export SIMD_BIN=./build/simd && make init-simapp && ./build/simd start &

run-rosetta:
runs-on: ubuntu-latest
needs: run-simapp
strategy:
fail-fast: false
matrix:
go-arch: ["amd64"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: "1.20"
check-latest: true
- name: Build
run: GOARCH=${{ matrix.go-arch }} make build
- name: Build Rosetta
run: make rosetta && make plugin && ./rosetta --blockchain "cosmos" --network "cosmos" --tendermint "tcp://localhost:26657" --addr "localhost:8080" --grpc "localhost:9090 &"
run-rosetta-cli-tests:
Expand Down

0 comments on commit 3ff64ac

Please sign in to comment.