-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into alex/sam/dec-type
* main: (31 commits) docs: update links for https security protocol (#22514) build(deps): Bump github.com/bytedance/sonic from 1.12.3 to 1.12.4 in /log (#22513) feat(x/protocolpool)!: allow any coins in continuous funds (#21916) docs: Update protobuf tx signing message format outer link (#22510) test(accounts): fix integration tests (#22418) chore(x): fix some typos in comment (#22508) build(deps): Bump cosmossdk.io/log from 1.4.1 to 1.5.0 (#22487) build(deps): Bump cosmossdk.io/core from 1.0.0-alpha.5 to 1.0.0-alpha.6 (#22502) build(deps): Bump golang.org/x/crypto from 0.28.0 to 0.29.0 (#22480) docs(adr75): server v2 (#21069) fix(server/v2): improve server stop (#22455) chore: prepare core changelog (#22495) refactor(store/v2): simplify genesis flow (#22435) build(deps): Bump google.golang.org/grpc from 1.67.1 to 1.68.0 (#22486) build(deps): Bump golang.org/x/sync from 0.8.0 to 0.9.0 (#22482) feat(x/circuit): Allow msg Reset with empty msgURL (#22459) build(deps): Bump actions/xxx-artifact from v3 to v4 (#22468) feat(stf/branch): simplify merged iterator (#22131) refactor(log): disable coloring in testing logger (#22466) chore(x/tx): update changelog to alpha.2 (#22465) ...
- Loading branch information
Showing
228 changed files
with
10,067 additions
and
3,569 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
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 |
---|---|---|
|
@@ -26,19 +26,19 @@ jobs: | |
run: go list ./... > pkgs.txt | ||
- name: Split pkgs into 4 files | ||
run: split -d -n l/4 pkgs.txt pkgs.txt.part. | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: "${{ github.sha }}-00" | ||
path: ./pkgs.txt.part.00 | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: "${{ github.sha }}-01" | ||
path: ./pkgs.txt.part.01 | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: "${{ github.sha }}-02" | ||
path: ./pkgs.txt.part.02 | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: "${{ github.sha }}-03" | ||
path: ./pkgs.txt.part.03 | ||
|
@@ -69,14 +69,14 @@ jobs: | |
**/go.sum | ||
**/Makefile | ||
Makefile | ||
- uses: actions/download-artifact@v3 | ||
- uses: actions/download-artifact@v4 | ||
with: | ||
name: "${{ github.sha }}-${{ matrix.part }}" | ||
- name: test & coverage report creation | ||
if: env.GIT_DIFF | ||
run: | | ||
cat pkgs.txt.part.${{ matrix.part }} | xargs go test -mod=readonly -race -timeout 30m -coverprofile=${{ matrix.part }}profile.out -covermode=atomic -tags='ledger test_ledger_mock' | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
if: env.GIT_DIFF | ||
with: | ||
name: "${{ github.sha }}-${{ matrix.part }}-coverage" | ||
|
@@ -107,7 +107,7 @@ jobs: | |
if: env.GIT_DIFF | ||
run: | | ||
make test-integration-cov | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
if: env.GIT_DIFF | ||
with: | ||
name: "${{ github.sha }}-integration-coverage" | ||
|
@@ -146,7 +146,7 @@ jobs: | |
if: env.GIT_DIFF | ||
run: | | ||
make test-system | ||
- uses: actions/upload-artifact@v3 | ||
- uses: actions/upload-artifact@v4 | ||
if: failure() | ||
with: | ||
name: "testnet-setup" | ||
|
@@ -167,27 +167,27 @@ jobs: | |
go.sum | ||
**/go.mod | ||
**/go.sum | ||
- uses: actions/download-artifact@v3 | ||
- uses: actions/download-artifact@v4 | ||
if: env.GIT_DIFF | ||
with: | ||
name: "${{ github.sha }}-00-coverage" | ||
- uses: actions/download-artifact@v3 | ||
- uses: actions/download-artifact@v4 | ||
if: env.GIT_DIFF | ||
with: | ||
name: "${{ github.sha }}-01-coverage" | ||
- uses: actions/download-artifact@v3 | ||
- uses: actions/download-artifact@v4 | ||
if: env.GIT_DIFF | ||
with: | ||
name: "${{ github.sha }}-02-coverage" | ||
- uses: actions/download-artifact@v3 | ||
- uses: actions/download-artifact@v4 | ||
if: env.GIT_DIFF | ||
with: | ||
name: "${{ github.sha }}-03-coverage" | ||
- uses: actions/download-artifact@v3 | ||
- uses: actions/download-artifact@v4 | ||
if: env.GIT_DIFF | ||
with: | ||
name: "${{ github.sha }}-integration-coverage" | ||
- uses: actions/download-artifact@v3 | ||
- uses: actions/download-artifact@v4 | ||
if: env.GIT_DIFF | ||
with: | ||
name: "${{ github.sha }}-e2e-coverage" | ||
|
@@ -322,8 +322,8 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.20" | ||
check-latest: true | ||
go-version: "1.21" | ||
check-latest: false | ||
cache: true | ||
cache-dependency-path: depinject/go.sum | ||
- uses: technote-space/[email protected] | ||
|
@@ -855,7 +855,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.20" | ||
go-version: "1.21" | ||
check-latest: true | ||
cache: true | ||
cache-dependency-path: log/go.sum | ||
|
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
Oops, something went wrong.