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

feat(depinject): add buf gen pulsar #5968

Merged
merged 22 commits into from
Apr 18, 2024
Merged
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
bb25487
add generation of pulsar files
crodriguezvega Jul 7, 2023
91d963b
remove wrong import
crodriguezvega Jul 7, 2023
0d97046
Merge branch 'feat/depinject-support' into carlos/add-buf-gen-pulsar
crodriguezvega Jul 7, 2023
98a354f
remove code that should come in a different PR
crodriguezvega Jul 7, 2023
d41e1fa
Merge branch 'main' into carlos/add-buf-gen-pulsar
crodriguezvega Sep 22, 2023
dce72db
Merge branch 'feat/depinject-support' into carlos/add-buf-gen-pulsar
crodriguezvega Feb 29, 2024
66b7e15
Merge branch 'main' into carlos/add-buf-gen-pulsar
crodriguezvega Mar 12, 2024
34e6e1c
update pulsar files
crodriguezvega Mar 12, 2024
17ce7dd
api go mod tidy
crodriguezvega Mar 12, 2024
c9f1eb1
Merge branch 'main' into carlos/add-buf-gen-pulsar
crodriguezvega Mar 12, 2024
b65ad37
chore: consolidate protogen scripts
damiannolan Apr 16, 2024
e779ba0
Merge branch 'feat/depinject' into carlos/add-buf-gen-pulsar
crodriguezvega Apr 17, 2024
21e2f1b
proto: add override to buf.gen.pulsar for cosmos-sdk
damiannolan Apr 17, 2024
d7f02dd
chore: go mod tidy api
damiannolan Apr 17, 2024
5253dce
proto: use protobuf/types/known/anypb
DimitrisJim Apr 17, 2024
ae4d335
chore: tidy api mod.
DimitrisJim Apr 17, 2024
a5e37eb
proto: rm go-grpc plugin for pulsar
damiannolan Apr 17, 2024
2362ef6
chore: go mod tidy api
damiannolan Apr 17, 2024
2183ec1
github: add workflow to at least sanity check that api mod builds on …
DimitrisJim Apr 17, 2024
e2b05e9
wip: add opt for ics23, rebuild pulsar. Comment out imports for time …
DimitrisJim Apr 17, 2024
7f4c62c
deps: replace with go psuedoversion of pulsar ics23 temp branch
damiannolan Apr 18, 2024
dcb615b
Update api/go.mod
damiannolan Apr 18, 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
23 changes: 23 additions & 0 deletions .github/workflows/api_module.yml
damiannolan marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: API module
# This workflow runs when a PR is opened that modifies code in the api module.
on:
pull_request:
paths:
- '.github/workflows/api_module.yml'
- 'api/**'

jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go-arch: ['amd64', 'arm', 'arm64']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Build api module
run: |
cd api
GOARCH=${{ matrix.go-arch }} go build ./...
Loading
Loading