Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Go releaser fix (#689) #693

Merged
merged 23 commits into from
Feb 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
733885c
fix: release permission check
deepan95dev Feb 20, 2024
9e5f612
Merge branch 'v047_upgrade' of github.com:cheqd/cheqd-node into go_re…
atheeshp Feb 20, 2024
a5c2d93
Merge branch 'v047_upgrade' of https://github.com/cheqd/cheqd-node in…
deepan95dev Feb 20, 2024
dc19d44
try fix go releaser
atheeshp Feb 20, 2024
b817e94
Merge branch 'go_releaser_fix' of https://github.com/cheqd/cheqd-node…
deepan95dev Feb 20, 2024
adb2f4e
touch
atheeshp Feb 20, 2024
833939f
touch
atheeshp Feb 20, 2024
54324aa
Merge branch 'go_releaser_fix' of https://github.com/cheqd/cheqd-node…
deepan95dev Feb 20, 2024
360f051
release check
deepan95dev Feb 20, 2024
de7a48a
try fix
atheeshp Feb 20, 2024
80223c3
Merge branch 'go_releaser_fix' of github.com:cheqd/cheqd-node into go…
atheeshp Feb 20, 2024
bb61084
release check
deepan95dev Feb 20, 2024
ed3c3a6
Merge branch 'go_releaser_fix' of https://github.com/cheqd/cheqd-node…
deepan95dev Feb 20, 2024
86f8c2b
fix swagger
atheeshp Feb 20, 2024
9f6979d
fix swagger gen
atheeshp Feb 20, 2024
51d0c33
Merge branch 'go_releaser_fix' of https://github.com/cheqd/cheqd-node…
deepan95dev Feb 20, 2024
89c0afc
fix
atheeshp Feb 20, 2024
99dd03c
Merge branch 'go_releaser_fix' of github.com:cheqd/cheqd-node into go…
atheeshp Feb 20, 2024
4733edd
release check
deepan95dev Feb 20, 2024
f32f716
update goreleaser config
akhilkumarpilli Feb 20, 2024
0a61891
revert changes
akhilkumarpilli Feb 20, 2024
98db093
fix: ante handler ibc fix
deepan95dev Feb 20, 2024
66f7bf7
review changes
atheeshp Feb 20, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,6 @@ on:
defaults:
run:
shell: bash
permissions:
contents: write
packages: read
checks: write


jobs:
# Super Linter only runs on diffs in PRs
Expand Down
1 change: 1 addition & 0 deletions ante/testutil_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ func (s *AnteTestSuite) SetupTest(isCheckTx bool) error {
ResourceKeeper: s.app.ResourceKeeper,
SignModeHandler: encodingConfig.TxConfig.SignModeHandler(),
SigGasConsumer: sdkante.DefaultSigVerificationGasConsumer,
IBCKeeper: s.app.IBCKeeper,
},
)
if err != nil {
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
### STAGE 1: Build node binary pre-requisites ###
###############################################################

FROM golang:1.18-alpine AS builder
FROM golang:1.21-alpine AS builder

# Install minimum necessary dependencies
ENV PACKAGES curl make git libc-dev bash gcc linux-headers findutils
Expand Down
3 changes: 3 additions & 0 deletions make/proto.mk
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ protoImage=$(DOCKER) run --rm -v $(CURDIR):/workspace --workdir /workspace $(con
proto-all: proto-gen proto-swagger-gen

proto-gen:
sudo find ../ -type d -exec chmod 777 {} +
@echo "Generating Protobuf files"
@$(protoImage) sh ./scripts/protocgen.sh;
go mod tidy
Expand All @@ -30,6 +31,8 @@ proto-lint:
@$(protoImage) buf lint --error-format=json

proto-swagger-gen:
sudo find ../ -type d -exec chmod 777 {} +
sudo chmod 666 ./app/client/docs/swagger.yaml
@echo "Generating Protobuf Swagger"
@$(protoImage) sh ./scripts/protoc-swagger-gen.sh;

Expand Down
Loading