-
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.
Remove dependency on Tendermint Core (#168)
* Remove dependency on tmrand Signed-off-by: Thane Thomson <[email protected]> * Remove integration test Signed-off-by: Thane Thomson <[email protected]> * Remove transactor dependency on rpctypes Signed-off-by: Thane Thomson <[email protected]> * Remove network info dependency on Tendermint RPC Signed-off-by: Thane Thomson <[email protected]> * Remove dependency on Tendermint Core Signed-off-by: Thane Thomson <[email protected]> * Bump golangci-lint version to v1.50.1 Signed-off-by: Thane Thomson <[email protected]> * ci: Remove code coverage, since integration tests will take place via Docker Signed-off-by: Thane Thomson <[email protected]> * Revert "Remove integration test" This reverts commit 207b2b7. * Add Docker-based integration test Signed-off-by: Thane Thomson <[email protected]> * Remove lint prerequisite for integration-test target (breaks CI) Signed-off-by: Thane Thomson <[email protected]> * Change subnet for integration test to 192.168.0.0/16 Signed-off-by: Thane Thomson <[email protected]> * Remove debug command from entrypoint script Signed-off-by: Thane Thomson <[email protected]> * Remove hacky mutex-based approach to serializing integration tests Signed-off-by: Thane Thomson <[email protected]> * Remove unnecessary exit condition check in integration test script Signed-off-by: Thane Thomson <[email protected]> Signed-off-by: Thane Thomson <[email protected]>
- Loading branch information
1 parent
a9c21a5
commit 4edcd62
Showing
18 changed files
with
546 additions
and
314 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 |
---|---|---|
|
@@ -17,6 +17,6 @@ jobs: | |
- uses: golangci/[email protected] | ||
with: | ||
# Required: the version of golangci-lint is required and must be specified without patch version: we always use the latest patch version. | ||
version: v1.49.0 | ||
version: v1.50.1 | ||
args: --timeout 10m | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,9 +13,7 @@ jobs: | |
- uses: actions/setup-go@v3 | ||
with: | ||
go-version: "1.18" | ||
- run: make build | ||
- run: | | ||
go test ./... -mod=readonly -timeout 8m -race -coverprofile=coverage.txt -covermode=atomic | ||
- run: make integration-test | ||
- uses: codecov/[email protected] | ||
with: | ||
file: ./coverage.txt |
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
Oops, something went wrong.