forked from cosmos/cosmos-sdk
-
Notifications
You must be signed in to change notification settings - Fork 34
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 mattverse/use-ragel
- Loading branch information
Showing
639 changed files
with
10,404 additions
and
12,672 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 |
---|---|---|
@@ -1,5 +1,4 @@ | ||
name: Build SimApp | ||
# This workflow is run on pushes to main & every Pull Requests where a .go, .mod, .sum have been changed | ||
on: | ||
pull_request: | ||
merge_group: | ||
|
@@ -26,30 +25,14 @@ jobs: | |
- uses: DeterminateSystems/magic-nix-cache-action@main | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
go-version: "1.22" | ||
check-latest: true | ||
- uses: technote-space/[email protected] | ||
id: git_diff | ||
with: | ||
PATTERNS: | | ||
**/*.go | ||
go.mod | ||
go.sum | ||
**/go.mod | ||
**/go.sum | ||
**/Makefile | ||
Makefile | ||
flake.lock | ||
flake.nix | ||
simapp/default.nix | ||
################### | ||
#### Build App #### | ||
################### | ||
- name: Build | ||
if: env.GIT_DIFF | ||
run: GOARCH=${{ matrix.go-arch }} make build | ||
- name: Build Legacy | ||
if: env.GIT_DIFF | ||
run: GOARCH=${{ matrix.go-arch }} COSMOS_BUILD_OPTIONS=legacy make build | ||
- name: Build with rocksdb backend | ||
if: | | ||
|
@@ -60,11 +43,8 @@ jobs: | |
## Build Tooling ## | ||
################### | ||
- name: Build Cosmovisor | ||
if: env.GIT_DIFF | ||
run: GOARCH=${{ matrix.go-arch }} make cosmovisor | ||
- name: Build Confix | ||
if: env.GIT_DIFF | ||
run: GOARCH=${{ matrix.go-arch }} make confix | ||
- name: Build Hubl | ||
if: env.GIT_DIFF | ||
run: GOARCH=${{ matrix.go-arch }} make hubl |
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
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 |
---|---|---|
|
@@ -18,7 +18,7 @@ jobs: | |
- uses: DeterminateSystems/magic-nix-cache-action@main | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
go-version: "1.22" | ||
check-latest: true | ||
- uses: technote-space/[email protected] | ||
id: git_diff | ||
|
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 |
---|---|---|
@@ -1,20 +1,23 @@ | ||
name: Buf-Push | ||
# name: Buf Push | ||
# Protobuf runs buf (https://buf.build/) push updated proto files to https://buf.build/cosmos/cosmos-sdk | ||
# This workflow is only run when a .proto file has been changed | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- "proto/**" | ||
# on: | ||
# push: | ||
# tags: | ||
# - "v[0-9]+.[0-9]+.[0-9]+" # Push events to matching v*, i.e. v1.0, v20.15.10 | ||
# - "v[0-9]+.[0-9]+.[0-9]+-rc[0-9]+" # Push events to matching v*-rc*, i.e. v1.0-rc1, v20.15.10-rc2 | ||
# - "v[0-9]+.[0-9]+.[0-9]+-beta[0-9]+" # Push events to matching v*-beta*, i.e. v1.0-beta1, v20.15.10-beta2 | ||
# - "v[0-9]+.[0-9]+.[0-9]+-alpha[0-9]+" # Push events to matching v*-alpha*, i.e. v1.0-alpha1, v20.15.10-alpha2 | ||
# paths: | ||
# - "proto/**" | ||
|
||
jobs: | ||
push: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: bufbuild/[email protected] | ||
- uses: bufbuild/buf-push-action@v1 | ||
with: | ||
input: "proto" | ||
buf_token: ${{ secrets.BUF_TOKEN }} | ||
# jobs: | ||
# root: | ||
# runs-on: ubuntu-latest | ||
# name: "Push to buf.build/cosmos/cosmos-sdk" | ||
# steps: | ||
# - uses: actions/checkout@v4 | ||
# - uses: bufbuild/buf-setup-action@v1.29.0 | ||
# - run: buf push proto --tag ${{ github.ref_type == 'tag' && github.ref_name || github.sha }} # https://github.com/bufbuild/buf-push-action/issues/20 | ||
|
||
## TODO at each module tag to their own buf repository |
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 |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
ref: "release/v0.47.x" | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
go-version: "1.22" | ||
check-latest: true | ||
- run: make build | ||
|
||
|
@@ -33,7 +33,7 @@ jobs: | |
steps: | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
go-version: "1.22" | ||
check-latest: true | ||
- name: Install runsim | ||
run: go install github.com/cosmos/tools/cmd/[email protected] | ||
|
@@ -52,7 +52,7 @@ jobs: | |
ref: "release/v0.47.x" | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
go-version: "1.22" | ||
check-latest: true | ||
- uses: actions/cache@v4 | ||
with: | ||
|
@@ -71,7 +71,7 @@ jobs: | |
ref: "release/v0.47.x" | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
go-version: "1.22" | ||
check-latest: true | ||
- uses: actions/cache@v4 | ||
with: | ||
|
@@ -90,7 +90,7 @@ jobs: | |
ref: "release/v0.47.x" | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
go-version: "1.22" | ||
check-latest: true | ||
- uses: actions/cache@v4 | ||
with: | ||
|
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 |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
ref: "release/v0.50.x" | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
go-version: "1.22" | ||
check-latest: true | ||
- run: make build | ||
|
||
|
@@ -33,7 +33,7 @@ jobs: | |
steps: | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
go-version: "1.22" | ||
check-latest: true | ||
- name: Install runsim | ||
run: go install github.com/cosmos/tools/cmd/[email protected] | ||
|
@@ -52,7 +52,7 @@ jobs: | |
ref: "release/v0.50.x" | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
go-version: "1.22" | ||
check-latest: true | ||
- uses: actions/cache@v4 | ||
with: | ||
|
@@ -71,7 +71,7 @@ jobs: | |
ref: "release/v0.50.x" | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
go-version: "1.22" | ||
check-latest: true | ||
- uses: actions/cache@v4 | ||
with: | ||
|
@@ -90,7 +90,7 @@ jobs: | |
ref: "release/v0.50.x" | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
go-version: "1.22" | ||
check-latest: true | ||
- uses: actions/cache@v4 | ||
with: | ||
|
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 |
---|---|---|
|
@@ -22,7 +22,7 @@ jobs: | |
steps: | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
go-version: "1.22" | ||
check-latest: true | ||
- name: Install runsim | ||
run: go install github.com/cosmos/tools/cmd/[email protected] | ||
|
@@ -37,7 +37,7 @@ jobs: | |
- uses: actions/checkout@v4 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.21" | ||
go-version: "1.22" | ||
check-latest: true | ||
- uses: actions/cache@v4 | ||
with: | ||
|
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.