Skip to content

Commit

Permalink
removed conditional building
Browse files Browse the repository at this point in the history
  • Loading branch information
bizk committed Sep 11, 2023
1 parent 5b9f9c6 commit da3f258
Showing 1 changed file with 7 additions and 14 deletions.
21 changes: 7 additions & 14 deletions .github/workflows/rosetta-cli-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,9 @@ permissions:
jobs:
run-simapp:
runs-on: ubuntu-latest

steps:
- name: Clone supercharge website repository
uses: actions/checkout@v2

# This part here is cloning a second repository
# While cloning the repository:
# - it clones the repo into the given `path`
# - it checks out the branch defined at `ref`
- name: Clone supercharge docs repository
uses: actions/checkout@v2
with:
Expand All @@ -35,6 +29,7 @@ jobs:
runs-on: ubuntu-latest
needs: run-simapp
strategy:
fail-fast: false
matrix:
go-arch: ["amd64"]
steps:
Expand All @@ -44,21 +39,19 @@ jobs:
go-version: "1.20"
check-latest: true
- name: Build
if: env.GIT_DIFF
run: GOARCH=${{ matrix.go-arch }} make build
###################
## Build Tooling ##code .
###################
- name: Build Rosetta
if: env.GIT_DIFF
run: GOARCH=${{ matrix.go-arch }} make rosetta && ./rosetta --blockchain "cosmos" --network "cosmos" --tendermint "tcp://localhost:26657" --addr "localhost:8080" --grpc "localhost:9090 &"
run: make rosetta && ./rosetta --blockchain "cosmos" --network "cosmos" --tendermint "tcp://localhost:26657" --addr "localhost:8080" --grpc "localhost:9090 &"
run-rosetta-cli-tests:
runs-on: ubuntu-latest
needs: run-rosetta
strategy:
fail-fast: false
matrix:
go-arch: ["amd64"]
include:
- network: calibration
url: LOTUS_URL_CALIBNET
steps:
- uses: actions/checkout@v3
- name: Rosetta-cli setup & test
run: GOARCH=${{ matrix.go-arch }} make rosetta-cli
run: make rosetta-cli

0 comments on commit da3f258

Please sign in to comment.