-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bump cosmos-sdk to v0.46.1 & fix some bugs (#318)
- Loading branch information
Dreamer
authored
Nov 3, 2022
1 parent
5016c1b
commit bf43b48
Showing
281 changed files
with
9,049 additions
and
9,174 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 |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Simulation Test | ||
on: [pull_request] | ||
|
||
jobs: | ||
test-sim-nondeterminism-fast: | ||
name: Test AppStateDeterminism | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout source code | ||
uses: actions/checkout@v3 | ||
- name: Setup go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: '^1.18' # The Go version to download (if necessary) and use. | ||
- run: make test-sim-nondeterminism-fast | ||
test-sim-import-export: | ||
name: Test AppImportExport | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout source code | ||
uses: actions/checkout@v3 | ||
- name: Setup go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: '^1.18' # The Go version to download (if necessary) and use. | ||
- run: make test-sim-import-export | ||
test-sim-after-import: | ||
name: Test AppSimulationAfterImport | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout source code | ||
uses: actions/checkout@v3 | ||
- name: Setup go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: '^1.18' # The Go version to download (if necessary) and use. | ||
- run: make test-sim-after-import |
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 |
---|---|---|
|
@@ -7,22 +7,9 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout source code | ||
uses: actions/checkout@v1 | ||
- name: Run unit tests | ||
uses: cedrickring/golang-action/[email protected] | ||
env: | ||
GO111MODULE: "on" | ||
uses: actions/checkout@v3 | ||
- name: Setup go | ||
uses: actions/setup-go@v3 | ||
with: | ||
args: make test-unit | ||
test-sim: | ||
name: Test Simulations | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout source code | ||
uses: actions/checkout@v1 | ||
- name: Run simulation tests | ||
uses: cedrickring/golang-action/[email protected] | ||
env: | ||
GO111MODULE: "on" | ||
with: | ||
args: make test-sim-nondeterminism-fast | ||
go-version: '^1.18' # The Go version to download (if necessary) and use. | ||
- run: make test-unit |
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 |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: WIP | ||
on: | ||
pull_request: | ||
types: [opened, synchronize, reopened, edited] | ||
|
||
jobs: | ||
wip: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: wip/action@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
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
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
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Generated by "buf config migrate-v1beta1". Edit as necessary, and | ||
# remove this comment when you're finished. | ||
# | ||
# This workspace file points to the roots found in your | ||
# previous "buf.yaml" configuration. | ||
version: v1 | ||
directories: | ||
- proto | ||
- third_party/proto |
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 |
---|---|---|
|
@@ -129,7 +129,7 @@ buf-stamp: | |
runsim: $(RUNSIM) | ||
$(RUNSIM): | ||
@echo "Installing runsim..." | ||
@(cd /tmp && go get github.com/cosmos/tools/cmd/[email protected]) | ||
@go install github.com/cosmos/tools/cmd/[email protected] | ||
|
||
tools-clean: | ||
rm -f $(STATIK) $(GOLANGCI_LINT) $(RUNSIM) | ||
|
Oops, something went wrong.