-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7084142
commit 77f52ee
Showing
1 changed file
with
23 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|