Skip to content

Commit

Permalink
fix runsim issue
Browse files Browse the repository at this point in the history
  • Loading branch information
NagaTulasi committed Sep 30, 2024
1 parent 7084142 commit 77f52ee
Showing 1 changed file with 23 additions and 8 deletions.
31 changes: 23 additions & 8 deletions .github/workflows/sims.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,38 @@ jobs:
check-latest: true
- run: make -C simapp build

# install-runsim:
# runs-on: ubuntu-latest
# needs: build
# steps:
# - uses: actions/setup-go@v3
# with:
# go-version: "1.21"
# - name: Display go version
# run: go version
# - name: Install runsim
# run: export GO111MODULE="on" && go install github.com/cosmos/tools/cmd/[email protected]
# - name: Add Go bin to PATH
# run: echo "${HOME}/go/bin" >> $GITHUB_PATH # This adds the Go bin directory to PATH
# - uses: actions/[email protected]
# with:
# path: ~/go/bin
# key: ${{ runner.os }}-go-runsim-binary

install-runsim:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/setup-go@v3
- uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Display go version
run: go version
- name: Install runsim
run: export GO111MODULE="on" && go install github.com/cosmos/tools/cmd/[email protected]
run: go install github.com/cosmos/tools/cmd/[email protected]
- name: Add Go bin to PATH
run: echo "${HOME}/go/bin" >> $GITHUB_PATH # This adds the Go bin directory to PATH
- uses: actions/[email protected]
with:
path: ~/go/bin
key: ${{ runner.os }}-go-runsim-binary
run: echo "${HOME}/go/bin" >> $GITHUB_PATH # This adds Go bin to PATH for subsequent steps
- name: Verify runsim installation
run: runsim --help

test-sim-nondeterminism:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 77f52ee

Please sign in to comment.